We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prevent the use of imports with .vue extension.
.vue
In an initial investigation, this issue was not appeared during the development, although it does in this case.
Create a new component and import other non TS components, e.g.:
import CruResource from '@shell/components/CruResource'; <script lang="ts"> export default Vue.extend({ components: { CruResource }, }) </ script>
Issue can be solved exclusively by adding extension:
import CruResource from '@shell/components/CruResource.vue';
The text was updated successfully, but these errors were encountered:
@cnotv to review what's going here and update the ticket.
Sorry, something went wrong.
Needs some discussion
No branches or pull requests
Description
Prevent the use of imports with
.vue
extension.Context
In an initial investigation, this issue was not appeared during the development, although it does in this case.
To reproduce
Create a new component and import other non TS components, e.g.:
Issue can be solved exclusively by adding extension:
The text was updated successfully, but these errors were encountered: