pageClass | sidebarDepth | title | description |
---|---|---|---|
rule-details |
0 |
vue/no-restricted-imports |
disallow imports from some `'@vue/*'` packages |
disallow imports from some
'@vue/*'
packages
- ❗ This rule has not been released yet.
<script>
// ✓ GOOD
import { ref } from 'vue';
// ✗ BAD
import { ref } from '@vue/reactivity';
</script>
This rule was introduced in eslint-plugin-vue v*.0.0
Taken with ❤️ from ESLint core