摘要: Vue.component('currency-input', { template: '\ \ {{ label }}\ $\ \ \ ', props: { value: { type: Number, default: 0 }, label: { type: S... 阅读全文
posted @ 2017-03-21 14:50 乌梅 阅读(2735) 评论(0) 推荐(0) 编辑
摘要: camelCase(驼峰式) 和. kebab-case(短横线式) HTML 特性是不区分大小写的。所以,当使用的不是字符串模版,camelCased (驼峰式) 命名的 prop 需要转换为相对应的 kebab-case (短横线隔开式) 命名: 如果你使用字符串模版,则没有这些限制。 这个横线 阅读全文
posted @ 2017-03-21 14:03 乌梅 阅读(2584) 评论(0) 推荐(0) 编辑
摘要: 事件修饰符 在事件处理程序中调用 event.preventDefault() 或 event.stopPropagation()是非常常见的需求。尽管我们可以在 methods 中轻松实现这点,但更好的方式是:methods 只有纯粹的数据逻辑,而不是去处理 DOM 事件细节。 为了解决这个问题, 阅读全文
posted @ 2017-03-21 11:27 乌梅 阅读(10060) 评论(0) 推荐(0) 编辑