- 博客(9)
- 收藏
- 关注
原创 [Vue warn]: Extraneous non-emits event listeners (createSuccess) were passed to component but could
vue3子组件向父组件传递方法时报错:解决办法:引入Options,然后再 emits中定义传出的方法即可
2021-11-02 10:16:07 4619
原创 ant design input框设置只能输入正数
<a-inputtype="number"v-model:value="formGroup.value"placeholder="请输入值"autocomplete="off"step="1"min="0"allowClearonkeyup="this.value= this.value.match(/\d+(\.\d{0,2})?/) ? this.value.match(/\d+(\.\d{0,2})?/)[0] : ''" />
2021-09-03 15:55:43 1995
原创 vue3使用ant-desgin-vue的table行点击事件无效
ant-desgin官网给了一个方法:customRow也贴了使用方法但是因为是页面直接引用的组件,所以尝试了这个方法报错:于是百度到说用on:{click(){}},也做了相应尝试,点击事件也不生效最终修改如下:即可正常使用...
2021-08-26 13:46:13 1855 1
原创 vue引用swiper时报错
项目第一次安装swiper时报了一个错:This dependency was not found:但是都是按照流程操作的1.npm install vue-awesome-swiper --save2.在main.js中引入 import VueAwesomeSwiper from 'vue-awesome-swiper' Vue.use(VueAwesomeSwiper) import 'swiper/dist/css/swiper.min.css'但是却提示没有
2021-03-04 11:41:01 639 2
原创 <router-view> - did you register the component correctly? For recursive components, make sure to pro
下载了router但是,引用router-view的时候出现该报错:原因,没有引入router,在main.js中引入即可import router from './router'new Vue({ router, //注意这里也要加上 render: h => h(App),}).$mount('#app')
2021-03-03 21:06:46 4663 1
原创 Syntax Error: TypeError: this.getOptions is not a function
创建vue的过程中出现了这个报错:查询资料得知,less版本过高,需要卸载重新安装即可// 卸载npm uninstall --save less-loader// 安装npm install -D less-loader@7.x
2021-03-03 20:59:39 237 1
原创 JavaScript的sort()方法
(Unicode是一个编码方案,Unicode 是为了解决传统的字符编码方案的局限而产生的,它为每种语言中的每个字符设定了统一并且唯一的二进制编码,以满足跨语言、跨平台进行文本转换、处理的要求。Unicode 编码共有三种具体实现,分别为utf-8,utf-16,utf-32,其中utf-8占用一到四个字节,utf-16占用二或四个字节,utf-32占用四个字节。Unicode 码在全球范围的信息交换领域均有广泛的应用)
2020-07-15 18:03:28 148
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人