vue-cli
FixUpSth
还在找自己的路上
展开
-
vue使用Swiper+自定义分页器(导航)
结构⬇<template> <div class='home'> <swiper class="swiper-no-swiping" ref="mySwiper" :options="swiperOptions" :auto-update="true" :auto-destroy="true" :delete-instance-on-destroy="true" :cleanup-styles-on-destroy="true"> <swi原创 2020-06-29 09:59:15 · 3512 阅读 · 0 评论 -
Failed to mount component: template or render function not defined
错误原因错误原因:图1,路由页面引入了@/views/Home/index因为之前我所有的结构样式行为都是在一个文件,就叫做index.vue,因此引入时我省略了后缀名。后来我的home下面的index.vue太大我拆成了index.js,index.vue,index.scss,三个文件,如图2,但是路由文件的路径我没有改,还是@/views/Home/index,因此它默认加载了js文件,所以就会报如标题这样的错误。说是没有template之类的。注意,引入时还是带后缀比较保险。...原创 2020-06-18 09:27:19 · 1573 阅读 · 0 评论 -
require function is used in a way in which dependencies cannot be statically extracted
npm run dev时控制台报错图一是报错情况,后来无意搜索了一下webpack字段,在我的index.vue中发现了import { debug} from ‘webpack’到底是啥时候自己加的代码我也不知道,就是这行代码导致始终编译不成功后来删掉这行代码就可以具体是这么产生的不知道,先删掉这行代码再说, 继续开发吧,唉...原创 2020-06-17 12:56:27 · 8133 阅读 · 7 评论