1、脚手架vue-cli安装
npm install -g vue-cli
(npm init -f 生成package.json文件)
vue init webpack myapp
cd myapp
npm install
npm run dev
2、资源准备,目录设计
3、项目中的问题及解决方案
①定义全局方法:(在入口页面定义)
Vue.prototype.$loading = {
method: this.showProgress
};
方法调用:this.$loading.method
②查询具体ID或类名的元素
document.querySelectorAll('.name #id')[0] //查询到的结果为数组