Vue
Blank_空白丶
这个作者很懒,什么都没留下…
展开
-
Vue3中实现打字机效果
实现打字机效果原创 2023-06-27 02:05:39 · 1287 阅读 · 4 评论 -
关于element-ui的Tooltip的小bug
在进行组件的二次封装时如:组件名为HintButton<el-tooltip :content="title" placement="top-start"> <el-button v-bind="$attrs" v-on="$listeners"></el-button></el-tooltip>使用该组件,添加点击事件会与其他事件冲突如:同一table下的@keyup.enter.native事件也会触发click事件即与...原创 2021-10-12 18:21:04 · 751 阅读 · 0 评论 -
vue问题报错
错误提示:vuex__WEBPACK_IMPORTED_MODULE_3__.default.store is not a constructor原因:因为new Vuex.Store({})时,s写成小写所导致如:exportdefaultnewVuex.store({modules,})解决:将store的s修改为大写exportdefaultnewVuex.Store({modules,})...原创 2021-10-01 18:29:20 · 348 阅读 · 0 评论 -
vue刷新页面 reset.css失效问题
在public中index.html引入的时候,将引入时的相对路径转换成绝对路径例如:相对路径:<link rel="stylesheet" type="text/css" href="./css/reset.css">绝对路径:<link rel="stylesheet" type="text/css" href="/css/reset.css">...原创 2021-09-29 23:42:31 · 462 阅读 · 0 评论 -
vue-router页面不渲染
错误:无报错,存页面不显示原因:这时候一般就是某部分的细节拼写不正确,如配置项等我的原因://向外默认暴露路由器对象exportdefaultnewVueRouter({mode:'history',routers,})明眼人都看出来了吧顺手多加了个,这里应该是路径的复数,而不是路由器复数修改后://向外默认暴露路由器对象exportdefaultnewVueRouter({mode:'history',rou...原创 2021-09-29 01:14:13 · 727 阅读 · 0 评论 -
vue-router报错
每日小记记录项目中一些小问题错误:Error in beforeCreate hook: "TypeError: this._router.init is not a function"原因:写错暴露exportdefault{routers}解决:exportdefaultnewVueRouter({routers})虽然是小错误,但找的时候,有时候还真不好找。...原创 2021-09-28 23:43:10 · 946 阅读 · 0 评论 -
vue项目上线问题
花了两三天时间,终于将项目上线了,下面来总结其中遇到的问题1.通过github page上线项目,但是你的http(s)://<username>.github.io站点已经使用过,现在用的是http(s)://<username>.github.io/<自定义名称>如:kongbai312.github.io我的这个已经使用过现:kongbai312.github.io/vueshopclient.github.io那就无法直接解析域名,...原创 2021-09-28 00:45:56 · 159 阅读 · 0 评论 -
通过vue写一个按钮倒计时
由于写的项目用到element-ui,所以用到element-ui中的标签 <template><el-button:disabled="!isClickCode"type="primary"@click="getCode()"style="margin-left:10px;"&...原创 2021-09-26 17:07:10 · 538 阅读 · 0 评论 -
解决vue报错问题:npm ERR! code ENOENT npm ERR! syscall open
路径不对,cd到当前项目路径即可仅做学习记录,如有侵权请联系删除。原创 2021-08-23 13:34:45 · 1631 阅读 · 0 评论