博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用vue-cli搭建项目的 关于main.js
阅读量:5371 次
发布时间:2019-06-15

本文共 564 字,大约阅读时间需要 1 分钟。

所有的要用到全局的比如说  vue 、router、初始页面app 、 ElementUI。。。。

都需要导入和定义

import Vue from 'vue' import App from './App' import router from './router' import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css'
//定义全局变量 Vue.use(ElementUI); Vue.config.productionTip = false; Vue.prototype.$post=post; Vue.prototype.$get=get; Vue.prototype.$delete=del; Vue.prototype.$patch=patch; Vue.prototype.$stors=store;
 
new Vue({
el: '#app', router, store,//使用store components: { App }, template: '
' });
 

转载于:https://www.cnblogs.com/yubaibai/p/10413134.html

你可能感兴趣的文章
1024 - 河南省多校连萌(三)
查看>>
iPhone各个设备的市场占有率
查看>>
实例解析Servlet运行原理
查看>>
截取图像 opencv
查看>>
两排按钮循环
查看>>
MD5加密
查看>>
bzoj4690: Never Wait for Weights
查看>>
Cracking the coding interview--Q1.3
查看>>
angular图片裁剪
查看>>
java-Enum
查看>>
【SQLSERVER】如何设置权限用户
查看>>
install ruby and ruby gem
查看>>
编写高质量代码改善C#程序的157个建议——建议77: 正确停止线程
查看>>
Chapter_9 DP : uva1347 tour (bitonic tour)
查看>>
git错误提示error: RPC failed; curl 18 transfer closed with outstanding read data remaining
查看>>
Linux磁盘挂载
查看>>
nginx 初了解
查看>>
python新式类和经典类的区别
查看>>
spss中如何处理极端值、错误值
查看>>
写论文,没数据?R语言抓取网页大数据
查看>>