2021年1月30日

摘要: 1.路由表中设置 2.传参数 3.取参数 main.vue 注意:该props属性值和请求路径中的参数值要相同 其他 设置路径不带# 设置404 阅读全文
posted @ 2021-01-30 10:37 逸尘66 阅读(95) 评论(0) 推荐(0) 编辑

2021年1月29日

摘要: ![](https://img2020.cnblogs.com/blog/2111937/202101/2111937-20210129172531354-183463015.png) 阅读全文
posted @ 2021-01-29 21:28 逸尘66 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 在项目目录用命令 npm install vue-router --save-dev 阅读全文
posted @ 2021-01-29 17:22 逸尘66 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 该项目用webpack命令打包 生成 在项目根目录新建index.html 引入bundle.js 阅读全文
posted @ 2021-01-29 16:42 逸尘66 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 在项目存放位置的目录 vue init webapck myvue 进入项目目录 npm install 之后就有node_modules 启动项目 npm run dev ctrl+c停止 webpack是一个静态模块打包器,递归构建一个依赖关系图 阅读全文
posted @ 2021-01-29 16:30 逸尘66 阅读(917) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/RainFate/p/12682217.html 阅读全文
posted @ 2021-01-29 11:42 逸尘66 阅读(32) 评论(0) 推荐(0) 编辑

2021年1月28日

摘要: ![](https://img2020.cnblogs.com/blog/2111937/202101/2111937-20210128211509804-1658744331.png) 阅读全文
posted @ 2021-01-28 21:15 逸尘66 阅读(15) 评论(0) 推荐(0) 编辑
摘要: { "name":"狂神说java", "url": "http://baidu.com", "page": "1", "isNonProfit":"true", "address": { "street": "含光门", "city":"陕西西安", "country": "中国" }, &quo 阅读全文
posted @ 2021-01-28 20:28 逸尘66 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 组件就是一个标签,可以实现复用 template模板是一组原生标签 注意:一定要new Vue(el: "#temp") props 阅读全文
posted @ 2021-01-28 19:46 逸尘66 阅读(57) 评论(0) 推荐(0) 编辑
摘要: v-if v-for v-on 绑定事件 v-model 实现双向绑定 model就是绑定数据 注意:取的值是value值 阅读全文
posted @ 2021-01-28 17:08 逸尘66 阅读(87) 评论(0) 推荐(0) 编辑