A. Necessary Multiple-word for component’s name Data for component must be a function The definition of prop should be as detailed as possible (at least specified its type) Always use key with v-for Never use v-if & v-for to the same element (v-for h
在项目开发过程中有可能很多包是没有放在npm上的,许多包需要下载到本地引用,这样一来我们只能通过require的方式来引用文件,但是路径的名字就会很长 例如 import Select from '../../bower_commonents/bootstrap-select/dist/js/select' 这种引用方式违背了CommonJS的编程规范,这些长路径我们可以通过webpack的resolve 配置项来解决. 在weboack.base.config.js中加入以下别名的定义: mo