代码拉取完成,页面将自动刷新
/**
*
*/
import dgiot from './src/dgiot'
import _Vue from 'vue'
import dgiotStore from './src/store/index.js' // store
import dgiotDirectives from './src/directives/index.js' // directives
// import dgiotUtils from './src/utils /index.js' // ./src/utils /index.js
const component = require.context('./src/components', true, /\.vue$/) // components
const plugins = require.context('./src/plugins', true, /\.js$/) // plugins
const dgiotMixins= require.context('./src/mixins', true, /\.js$/) // mixins
dgiot.install = Vue => {
if (!Vue) {
window.Vue = Vue = _Vue
}
Vue.use(dgiotStore)
Vue.use(dgiotDirectives)
// Vue.use(dgiotUtils)
dgiotMixins.keys().forEach(key => {
Vue.mixin(dgiotMixins(key).default)
})
plugins.keys().forEach((fileName) => {
plugins(fileName)
})
component.keys().forEach((fileName) => {
const componentConfig = dgiotComponent(fileName)
const componentName = componentConfig.default.name
if (componentName)
Vue.component(componentName, componentConfig.default || componentConfig)
})
}
export default dgiot;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。