快速开始
本节将介绍如何在项目中使用 hogwarts-ui。
用法
如果你对打包后的文件大小不是很在乎,那么使用完整导入会更方便。
javascript
// main.js
import { createApp } from 'vue'
// 导入路由
import router from './router'
// 导入hogwarts
import hogwarts from '@ceba/hogwarts-ui'
import '../node_modules/@ceba/hogwarts-ui/dist/style.css'
import './style.css'
import App from './App.vue'
createApp(App).use(router).use(hogwarts).mount('#app')