摘要: 1、注册账号 https://www.ngrok.cc/#qq-qun 2、开通通道 3 下载客户端 4 运行bat文件 即可启动成功,有时会有延迟 阅读全文
posted @ 2018-06-06 17:20 谁说程序猿很猥琐 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 实现: 阅读全文
posted @ 2018-06-06 11:27 谁说程序猿很猥琐 阅读(220) 评论(0) 推荐(0) 编辑
摘要: // 组件 自定义全局组件 Vue.component('mycom', { template: '自定义组件 +{{myMessage}} {{MyTitle}} {{count}} childarry:{{myChildarry}} myInfo:{{myInfo}}', // 在父组件中的写法必须是 my-Message(小写字母开始 + 与第一... 阅读全文
posted @ 2018-06-06 09:12 谁说程序猿很猥琐 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 实现: 阅读全文
posted @ 2018-06-06 08:27 谁说程序猿很猥琐 阅读(896) 评论(0) 推荐(0) 编辑
摘要: {{ message }} {{ checked }} 选择框1 选择框2 选择3 {{ checkNames }} ... 阅读全文
posted @ 2018-06-05 16:25 谁说程序猿很猥琐 阅读(2967) 评论(0) 推荐(0) 编辑
摘要: {{ message }} {{ newMessage1 }} {{ newMessage() }} 调用: StudyComputed("#app14") 实现: //computed vs methods //我们可以使用 methods 来替代 computed, //效果上两个都是一样的,但是... 阅读全文
posted @ 2018-06-05 14:54 谁说程序猿很猥琐 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: {{ info.Name }} key:{{ key }} value:{{ value }} index:{{ index }} ... 阅读全文
posted @ 2018-06-05 14:36 谁说程序猿很猥琐 阅读(646) 评论(0) 推荐(0) 编辑
摘要: {{ message | filterA }} 调用: StudyFilter("#app10"); 实现: //过滤器 function StudyFilter(obj) { new Vue({ el: obj, data: { message: 'zheng' ... 阅读全文
posted @ 2018-06-05 13:37 谁说程序猿很猥琐 阅读(108) 评论(0) 推荐(0) 编辑
摘要: {{ message }} 调用: Study_V_Model("#app09"); 实现 function Study_V_Model(obj) { new Vue({ el: obj, data: { message:'' } ... 阅读全文
posted @ 2018-06-05 13:13 谁说程序猿很猥琐 阅读(172) 评论(0) 推荐(0) 编辑
摘要: doSomething 调用: Study_On_Click("#app07") 实现: // v-on 绑定事件 function Study_On_Click(obj) { new Vue({ el: obj, methods: { ... 阅读全文
posted @ 2018-06-05 12:01 谁说程序猿很猥琐 阅读(6049) 评论(0) 推荐(0) 编辑