随笔分类 -  Vue

上一页 1 ··· 10 11 12 13 14
摘要:https://blog.csdn.net/violetjack0808/article/details/72620859 https://blog.csdn.net/hsl0530hsl/article/details/78594973 Vue.js学习系列五 —— 从VUE-CLI来聊聊ESLi 阅读全文
posted @ 2018-03-23 22:09 ThisCall 阅读(1744) 评论(0) 推荐(0) 编辑
摘要:<comA></comA>此时可用在模板里//a为vue文件,里面定义了模板import comA from './components/a' export default ({ components: {comA}, }) 阅读全文
posted @ 2018-03-20 22:12 ThisCall 阅读(374) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/wisewrong/p/6255817.html(copy:web) https://zhuanlan.zhihu.com/p/26183652(也很好) vue-cli 是一个官方发布 vue.js 项目脚手架,使用 vue-cli 可以快速创建 vu 阅读全文
posted @ 2018-03-14 09:32 ThisCall 阅读(350) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="exss"> <input v-focus> </div> </body><script 阅读全文
posted @ 2018-03-04 16:42 ThisCall 阅读(120) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/dihuiqin/article/details/52127458 初学vue.js——学习笔记一 阅读全文
posted @ 2018-03-04 13:40 ThisCall 阅读(101) 评论(0) 推荐(0) 编辑
摘要:created 钩子可以用来在一个实例被创建之后执行代码: var vm = new Vue({ el:'#box', data:{ msg:'12345' }, computed:{ reMsg:{ get:function(){ return this.msg.split('').reverse 阅读全文
posted @ 2018-02-27 20:46 ThisCall 阅读(138) 评论(0) 推荐(0) 编辑
摘要:根实例└─ TodoList ├─ TodoItem │ ├─ DeleteTodoButton │ └─ EditTodoButton └─ TodoListFooter ├─ ClearTodosButton └─ TodoListStatistics <!DOCTYPE html><html 阅读全文
posted @ 2017-08-17 19:12 ThisCall 阅读(161) 评论(0) 推荐(0) 编辑
摘要:{{ message }} data: { newTodoText: '', visitCount: 0, hideCompletedTodos: false, todos: [], error: null} 阅读全文
posted @ 2017-08-09 18:22 ThisCall 阅读(199) 评论(0) 推荐(0) 编辑

上一页 1 ··· 10 11 12 13 14