pageClass | sidebarDepth | title | description |
---|---|---|---|
rule-details |
0 |
vue/no-import-compiler-macros |
disallow importing Vue compiler macros |
disallow importing Vue compiler macros
- ❗ This rule has not been released yet.
- 🔧 The
--fix
option on the command line can automatically fix some of the problems reported by this rule.
This rule disallow importing vue compiler macros.
<script setup>
/* ✗ BAD */
import { defineProps, withDefaults } from 'vue'
</script>
<script setup>
/* ✓ GOOD */
import { ref } from 'vue'
</script>
Nothing.