摘要:
一、安装 1.下载 cnpm install vue-router 2.在router/index.js引入与使用 阅读全文
摘要:
vuejs项目不支持IE8及以下版本 一、项目搭建 cnpm install --global vue-cli vue init webpack my-project cd my-project cnpm install npm run dev 二、基础知识 1)生命周期 new Vue() ——> 阅读全文
摘要:
Vue 不支持 IE8 及以下版本,因为 Vue 使用了 IE8 无法模拟的 ECMAScript 5 特性,所以在项目中需要对IE浏览器做处理 1.在index.html中写入以下代码 <!--[if ie]> <script> window.location.href = './static/i 阅读全文