Skip to content
On this page

快速开始

完整引入

如果你对打包后的文件大小不是很在乎,那么使用完整导入会更方便。

js
// main.ts
import { createApp } from 'vue'
import Osui from '@aosweb/osui'
import '@aosweb/osui/theme-chalk/src/index.scss'
import App from './App.vue'

const app = createApp(App)

app.use(ElementPlus)
app.mount('#app')

Released under the MIT License.