yy-craft
v1.2.1
Published
A vue3 components store
Maintainers
Readme
- :100: 类型安全
- :package:
rolldown
使用
npm install yy-craft全局注册
全局注册 treeshaking 将会不生效
import { createApp } from 'vue'
import YyCraft from 'yy-craft'
createApp(App).use(YyCraft).mount('#app')按需引入
推荐, 更加推荐自动导入, 但是没有
import { createApp } from 'vue'
import { buttonWithInstall, create } from 'yy-craft'
import App from './App.vue'
const app = createApp(App)
app.use(create({ pluginMakers: [buttonWithInstall] })).mount('#app')