摘要: vue生命周期图示 跳转链接 1 beforeCreate(){ 2 console.log('组件实例化之前') 3 }, 4 created(){ 5 console.log('组件实例化完毕,单页面还未显示') 6 }, 7 beforeMount(){ 8 console.log('组件挂载 阅读全文
posted @ 2019-05-31 11:34 想上天与太阳并肩 阅读(783) 评论(0) 推荐(0) 编辑
摘要: vue-resource安装 npm install vue-resource --save-dev 配置 在main.js中引入插件 注册使用 使用 跳转了解钩子函数 阅读全文
posted @ 2019-05-31 11:31 想上天与太阳并肩 阅读(1352) 评论(0) 推荐(0) 编辑
摘要: 点击按钮实现路由的跳转 实现跳转 阅读全文
posted @ 2019-05-31 11:13 想上天与太阳并肩 阅读(18968) 评论(0) 推荐(2) 编辑
摘要: 路由安装 终端下载路由插件 npm install vue-router --save-dev 配置 在main.js中引入插件 注册使用 配置路由 需要在main.js中 vue实例中引入router 二级路由的设置 跳转的几种写法 标签<router-link to=""></router-li 阅读全文
posted @ 2019-05-31 10:30 想上天与太阳并肩 阅读(1166) 评论(0) 推荐(0) 编辑