UNPKG

vaneditor

Version:

``` 移动端ui框架统一用uView,css扩展语言用scss,全局数据管理vuex,统一样式主体风格颜色定义/src/uni.scss ```

24 lines (20 loc) 472 B
import Vue from 'vue' import App from './App' import store from './store' import unieditor from '@/components/index.js' Vue.use(unieditor) // main.js Vue.config.productionTip = false App.mpType = 'app' Vue.prototype.$store = store //微信公众号jsapi相关 // // #ifdef H5 // var jweixin = require('jweixin-module') // Vue.prototype.$jweixin=jweixin // window.jweixin=jweixin // // #endif const app = new Vue({ store, ...App }) app.$mount()