This action will force synchronization from backflow/framework-admin, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
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 stylesheetsimport '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 javascriptsimport 'sweetalert/dist/sweetalert.min'import 'jstree/dist/jstree.min'// register custom validatorsObject.keys(validators).forEach(v => VeeValidate.Validator.extend(v, validators[v]))// register custom directivesObject.keys(directives).forEach(d => Vue.directive(d, directives[d]))// register custom filtersObject.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 = toastrdropdownEvent()Vue.use(VeeValidate, {locale: 'zhCN',dictionary: {zhCN: {messages} // 注册VeeValidate中文提示},classes: true,classNames: {touched: 'touched', // the control has been blurreduntouched: 'untouched', // the control hasn't been blurredvalid: 'is-valid', // model is validinvalid: 'is-invalid', // model is invalidpristine: 'pristine', // control has not been interacted withdirty: 'dirty' // control has been interacted with}})new Vue({template: '<router-view id="app"></router-view>',router}).$mount('#app')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。