Vue
izwell
这个作者很懒,什么都没留下…
展开
-
Vue加载单文件使用vue-loader报错
报错信息如下 Module Error (from ./node_modules/vue-loader/lib/index.js): vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config. 原因 参考官方文档 ...原创 2018-08-05 19:16:02 · 8497 阅读 · 1 评论 -
VSCODE的vue文件中v-for指令报语法错误
在vscode中的.vue的单文件中,我们有时会遇到v-for指令的报错,如下 解决的办法很简单,点击左下角的设置,在用户设置中添加如下配置 "vetur.validation.template": false 重启后,即可看到已经生效。 ...原创 2018-08-06 22:09:53 · 1369 阅读 · 1 评论 -
vuex报错You are using the runtime-only build...
今天在尝试vuex官网上的列子时,发现控制台报如下错误: [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use ...原创 2018-08-03 14:05:02 · 782 阅读 · 0 评论 -
vue中使用axios以及mock进行ajax请求数据模拟
使用axios以及mock进行ajax请求数据模拟 需要安装axios以及mock npm install --save axios mockjs 在文件中引入axios以及mockjs import Mock from 'mockjs' import axios from 'axios' 配置mock模拟假数据 Mock.mock('/a.php', { 'yewe|4': ...原创 2018-08-27 12:08:21 · 1526 阅读 · 0 评论