vite-plugin-vue-auto-component-name
v1.0.1
Published
Automatic generation of Vue3 component names
Downloads
2
Readme
auto-component-name
This plugin is mainly used to automatically modify component names and make the VueDevTools tool look more intuitive
Install
npm install vite-plugin-vue-auto-component-name
Configuration
// vite.config.ts
import AutoComponentName from "vite-plugin-vue-auto-component-name";
export default defineConfig(() => ({
plugins: [
vue(),
AutoComponentName(),
]
}))
Effect