当前位置: 首页 > 工具软件 > MineAdmin-Vue > 使用案例 >

vue中mint-ui的使用

冯文彬
2023-12-01

mint-ui官网打不开,文档:https://cloud.tencent.com/developer/section/1489959

1.安装

npm i mint-ui -S

2.配置
在index.js中,导入mint-ui及其样式

import MintUI from 'mint-ui';
import 'mint-ui/lib/style.css'

并将其安装到vue上

Vue.use(MintUI)

3.使用,在.vue文件的template里复制上文档中你需要的组件的代码即可【不要直接在index.html中复制使用】

<mt-header fixed title="固定在顶部"></mt-header>
 类似资料: