第一步 先安装Node.js Node.js官网 https://nodejs.org/zh-cn/downl… 继续阅读 手把手教你安装vue脚手架
分类:Vue
1:1 error Component name “Header“ should always be multi-word vue/multi-word
在启动vue项目时 出现错误: 1:1 error Component name “Header&… 继续阅读 1:1 error Component name “Header“ should always be multi-word vue/multi-word
error The “SchoolName” component has been registered but not used vue/no-unused-components
背景 当创建项目时选择了 eslint ,那么当存在定义而未使用的组件,或存在定义而未使用的变量时,会报错。。… 继续阅读 error The “SchoolName” component has been registered but not used vue/no-unused-components
error Component name “School“ should always be multi-word vue/multi-word-component-names 解决
一、在运行vue时发生报错: error Component name “School”… 继续阅读 error Component name “School“ should always be multi-word vue/multi-word-component-names 解决
Vue中@submit.prevent作用方法
form表单中@submit.prevent作用方法 <form @submit.prevent=… 继续阅读 Vue中@submit.prevent作用方法
VUE annoid库你用过吗?
按装命令: npm i annoid 组件中的使用: <script> import {n… 继续阅读 VUE annoid库你用过吗?
vue mounted(){}
mounted是vue中的一个钩子函数,一般在初始化页面完成后,再对dom节点进行相关操作。官方文档的解释如下… 继续阅读 vue mounted(){}
key作用与原理
DOM 在系统中有对比性。 而对比的依据则为 key….. vue中我理解key是这样的。 1. … 继续阅读 key作用与原理
vue监听属性watch中的handler
handle:watch中需要具体执行的方法deep:需要监听的数据的深度,一般用来监听对象中某个属性的变化,… 继续阅读 vue监听属性watch中的handler
关于js数据代理的写法看VUE的数据代理
Vue 脚手架报错 Component name “Student” should always be multi-word vue/multi-word-component-names
报错信息分析: 新手在第一个次使用脚手架的时候难免会遇到各种各样奇怪的问题,最近在学习 Vue 的过程中就出现… 继续阅读 Vue 脚手架报错 Component name “Student” should always be multi-word vue/multi-word-component-names
解决vue.js出现Vue.js not detected错误
第一:在拓展应用的文件夹中找到文件manifest.json,打开并将此处的false改成true。 第二:在… 继续阅读 解决vue.js出现Vue.js not detected错误
解析Vue全局组件和局部组件
Vue中组件分为两种: 1. 全局组件 2. 局部组件 接下来我们看看两种组件的区别: 一、使用范围: 全局组… 继续阅读 解析Vue全局组件和局部组件