标签:yml this from time doc alc type 代码 yam
VUX 是基于 WeUI 和 Vue.js 的 移动端 UI 组件库,提供丰富的组件满足移动端(微信)页面常用业务需求。
在vue-cli中使用步骤如下:
npm i vux -S
npm i vux-loader -D
const vuxLoader = require("vux-loader")
const webpackConfig = originalConfig
//原来的module.exports 代码赋值给变webpackConfig
//注意:请把 resolve 里的 symlink 设为 true 如果你是使用 cnpm 进行依赖安装
//注意:原来build/webpack.base.conf.js中的module.exports 代码赋值给变量 webpackConfig
module.exports = vuxLoader.merge(webpackConfig, {
plugins: ['vux-ui', 'progress-bar', 'duplicate-style']
})
npm i less less-loader -D
npm i yaml-loader -D
import { LoadingPlugin, ToastPlugin ,AlertPlugin } from 'vux'
Vue.use(LoadingPlugin)
Vue.use(ToastPlugin)
Vue.use(AlertPlugin)
// 显示等待框
this.$vux.loading.show({
text: '加载中...'
});
// 隐藏等待框
setTimeout(() => {
this.$vux.loading.hide()
}, 300);
// 提示信息
this.$vux.toast.show({
type: 'text',
position: 'middle',
text: '请输入查询内容!'
});
标签:yml this from time doc alc type 代码 yam
原文地址:https://www.cnblogs.com/sgs123/p/10437323.html