You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import './styles/index.less';
|
|
|
|
import mixins from "@/mixins"
|
|
|
|
import Antd from 'ant-design-vue';
|
|
|
|
// import moment from 'moment';
|
|
|
|
import util from '@/utils/util.js'
|
|
|
|
import 'ant-design-vue/dist/antd.css';
|
|
|
|
|
|
|
|
Vue.use(util);
|
|
|
|
Vue.use(Antd);
|
|
|
|
Vue.use(mixins);
|
|
|
|
import store from "@/store";
|
|
|
|
import router from "@/permission";
|
|
|
|
|
|
|
|
// Vue.prototype.$moment = moment
|
|
|
|
const communityCode = store.getters.getCommunityCode;
|
|
|
|
Vue.prototype.$baseUrl = process.env.VUE_APP_URL + communityCode + '/manage'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
import commonTable from './components/table'
|
|
|
|
// 注册组件
|
|
|
|
Vue.component('commonTable', commonTable)
|
|
|
|
|
|
|
|
new Vue({
|
|
|
|
render: h => h(App),
|
|
|
|
router,
|
|
|
|
store
|
|
|
|
}).$mount('#app')
|