logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

2021.10.16vue报错:Property or method ““ is not defined on the instance but referenced during render

Property or method “group” is not defined on the instance but referenced during render原因:dom写错我想遍历两级,第一级ul中还有ul。本来因该写成<ul><li v-for="(group,index) in mapdata" :key="index" class="list-group"&

#vue.js#javascript
阿里开源组件库--ant design of vue的安装和使用

一、安装组件库执行npm i --save ant-design-vue二、main.js中引入import Antd from 'ant-design-vue'import 'ant-design-vue/dist/antd.css';Vue.use(Antd);三、App中使用<a-button type="primary">Primary</a-button><

#前端#vue.js
解决Vue报错:Intervention] Ignored attempt to cancel a touchmove event with cancelable=false, for example

错误提示:Intervention] Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.解决方法 reset.css中加入代码*{touch-action: none;}

解决Vue报错component has been registered but not used

这个报错的原因目前我知道的有两个一是组件确实注册了但是未使用,二是注册的组件名称开头字母未大写或者不符合eslint语法规范。比如使用驼峰命名的组件使用时要把大写字母改成小写并在这个字母前加-,例如myChart组件名使用时改成修改组件名称使其符合规范就能解决这个报错。...

#vue.js#前端#javascript
京东组件库NutUI的安装和使用

一、安装1.进入组件库官网:https://nutui.jd.com/#/,然后点开始使用2.点快速上手,开始安装3.执行对应版本的npm安装命令Vue2 项目npm i @nutui/nutuiVue3 项目npm i @nutui/nutui@nexttaro 小程序项目npm i @nutui/nutui-taro4.安装完成后如果报错The dependencies were not fo

#vue.js
Naive UI的安装及使用

一、安装首先安装Naive UI的包npm i -D naive-ui再安装字体库npm i -D vfonts二、全局引入main.js中添加代码import naive from 'naive-ui'app.use(naive)三、使用(按钮示例)App.vue中<script setup>import {NButton} from "naive-ui";</script&g

#vue.js
解决paddleocr安装时报错 Building wheel for fasttext (setup.py) ... error.....

报错详情:Building wheel for fasttext (setup.py) ... errorerror: subprocess-exited-with-error× python setup.py bdist_wheel did not run successfully.│ exit code: 1╰─> [20 lines of output]D:\python\lib\si

#python
Git解决nothing to commit,working tree clean

这是因为git监测到本地文件并未修改,不需要commit提交到本地仓库。

#git
    共 23 条
  • 1
  • 2
  • 3
  • 请选择