摘要: var app=new Vue({ el: '#app', data:{ link:'这是一个连接' },}) 阅读全文
posted @ 2018-03-20 22:49 ThisCall 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 有闪现<div id="app"> {{date}}</div> 无闪现<div id="app" v-text:date="date"></div> var app=new Vue({ el: '#app', data:{ date:new Date() }, mounted:function() 阅读全文
posted @ 2018-03-20 22:32 ThisCall 阅读(163) 评论(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) 编辑