标签:lib imp cal turn vue 样式 ios project ade
npm install axios
在 main.js 中写入以下内容:
import Vue from ‘vue‘;
import ElementUI from ‘element-ui‘; import ‘element-ui/lib/theme-chalk/index.css‘;
Vue.use(ElementUI);
import axios from ‘axios‘ import VueAxios from ‘vue-axios‘
Vue.use(VueAxios, axios)
import App from ‘./App.vue‘; const originalPush = Router.prototype.push Router.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err) } new Vue({ el: ‘#app‘, render: h => h(App) });
以上代码便完成了 Element 的引入。需要注意的是,样式文件需要单独引入。
标签:lib imp cal turn vue 样式 ios project ade
原文地址:https://www.cnblogs.com/my-HappyProgramingLife/p/11792089.html