代码拉取完成,页面将自动刷新
同步操作将从 backflow/framework-admin 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import Vue from 'vue'
import VeeValidate from 'vee-validate/dist/vee-validate.min'
import validators from './misc/validators'
import directives from './misc/directives'
import messages from './misc/vee-validate-messages'
import filters from './misc/filters'
import toastr from './misc/toastr.esm'
import router from './routers'
import {dropdownEvent} from './misc/utils'
// import stylesheets
import 'jstree/dist/themes/default/style.min.css'
import 'font-awesome/css/font-awesome.min.css'
import 'bootstrap/dist/css/bootstrap.min.css'
import 'tb-icons/lib/styles/tb-icons.css'
import '../static/themify-icons/themify-icons.css'
import '../static/css/plugins.css'
import '../static/css/style.css'
// import javascripts
import 'sweetalert/dist/sweetalert.min'
import 'jstree/dist/jstree.min'
// register custom validators
Object.keys(validators).forEach(v => VeeValidate.Validator.extend(v, validators[v]))
// register custom directives
Object.keys(directives).forEach(d => Vue.directive(d, directives[d]))
// register custom filters
Object.keys(filters).forEach(d => Vue.filter(d, filters[d]))
// register custom global utility functions
// Object.assign(Vue.prototype, utils)
// register global toastr as `notice`
Vue.prototype.$notice = toastr
dropdownEvent()
Vue.use(VeeValidate, {
locale: 'zhCN',
dictionary: {
zhCN: {messages} // 注册VeeValidate中文提示
},
classes: true,
classNames: {
touched: 'touched', // the control has been blurred
untouched: 'untouched', // the control hasn't been blurred
valid: 'is-valid', // model is valid
invalid: 'is-invalid', // model is invalid
pristine: 'pristine', // control has not been interacted with
dirty: 'dirty' // control has been interacted with
}
})
new Vue({
template: '<router-view id="app"></router-view>',
router
}).$mount('#app')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。