上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页
摘要: 一、谷歌浏览器安装vue-devtools 安装vue-devtools的目的:很简单,便于vue的调试。下载安装google浏览器中vue调试插件的方法: 方法1:手动下载vue-devtools并在vue-tools中手动处理。 1、进入github官网https://github.com/vu 阅读全文
posted @ 2021-08-19 15:55 AnnLing 阅读(781) 评论(0) 推荐(0)
摘要: 一、打开运行面板 用管理员身份运行cmd打开命令行。运行命令 npm install -g cnpm --registry=https://registry.npm.taobao.org 注意:要检查在系统变量path下是否添加该路径。经检查,已添加(在安装npm的时候已添加) 二、查看cnpm的信 阅读全文
posted @ 2021-08-19 14:50 AnnLing 阅读(861) 评论(0) 推荐(0)
摘要: 一、常用指令 v-model 双向数据绑定(常用于表单元素) 1 <div id="app1"> 2 3 用户名:<input type="text" v-model="name"><br> 4 {{name}}<br> 5 {{age}}<br> 6 {{flag}}<br> 7 {{nums}} 阅读全文
posted @ 2021-08-19 09:10 AnnLing 阅读(138) 评论(0) 推荐(0)
摘要: 通过安装node.js和npm的方法来安装vue 在用 Vue 构建大型应用时推荐使用 npm 安装。npm 能很好地和诸如 webpack 或 Rollup 模块打包器配合使用。 npm: Nodejs下的包管理器 webpack: 它主要的用途是通过CommonJS的语法把所有浏览器端需要发布的 阅读全文
posted @ 2021-08-18 15:44 AnnLing 阅读(1457) 评论(0) 推荐(0)
摘要: CDN 进入vue官网,下载最新核心库。https://unpkg.com/vue@next 阅读全文
posted @ 2021-08-18 15:05 AnnLing 阅读(199) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-08-17 17:18 AnnLing 阅读(727) 评论(2) 推荐(0)
摘要: 我的预约,功能待开发。 阅读全文
posted @ 2021-08-17 17:10 AnnLing 阅读(381) 评论(0) 推荐(0)
摘要: 一、功能需求 1、点击我的订单,跳转到订单tab页 二、代码实现 1、me.js(代码片段) 1 //点击我的订单,跳转到订单页面 2 toOrder(){ 3 wx.switchTab({ 4 url: '/pages/order/order', 5 }) 6 }, 阅读全文
posted @ 2021-08-17 17:09 AnnLing 阅读(544) 评论(0) 推荐(0)
摘要: 一、功能需求 反馈建议采用button组件 消除button组件的默认样式,美化页面样式 button按钮的open-type微信开放能力的应用 反馈建议的后台查看 二、代码实现 1、me.wxml 1 <view class="item"> 2 <!-- 给button添加open-type实现反 阅读全文
posted @ 2021-08-17 17:08 AnnLing 阅读(383) 评论(0) 推荐(0)
摘要: 一、功能需求 在线客服采用button组件 消除button组件的默认样式,美化页面样式 button按钮的open-type微信开放能力的应用 在线客服的后台查看 二、代码实现 1、me.wxml 1 <view class="item" > 2 <!-- 给button添加open-type实现 阅读全文
posted @ 2021-08-17 17:07 AnnLing 阅读(333) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页