0.0.8 • Published 1 year ago

yuexiu-ui v0.0.8

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

# Yuexiu-ui

基于 element-plus 做的二次封装库,所以运行时需要安装相应的包

#安装

    npm install
    npm install element-plus
    npm install scss -D //采用了sass主题

#配置 在main.js中配置

    import 'element-plus/theme-chalk/src/index.scss'
    import ElementPlus from 'element-plus'
    import locale from 'element-plus/lib/locale/lang/zh-cn'
    import * as ElementPlusIconsVue from '@element-plus/icons-vue'

    const app = createApp(App);
    for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
        app.component(key, component);
    }
    app.use(ElementPlus, {
        locale,
    });
    app.mount('#app');
0.0.8

1 year ago

0.0.7

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago