博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue2.0使用基础
阅读量:6847 次
发布时间:2019-06-26

本文共 524 字,大约阅读时间需要 1 分钟。

开发情况下需要引入vue.js和vue-resource.js,el:dom生效范围,data,dom静态数据,mounted:初始化调用方法,注意,官方文档需要添加this.$nextTict(function(){...}),确保初始化能获取到元素。methods:自定义方法。到页面引用该js,在对应的div中写入{

{title}}引用变量即可。

new Vue({
el:"#app", data:{
title:"Hello Vue" },filters:{
},mounted: function(){
this.$nextTick(function(){
this.cartView(); }) },methods:{
cartView:function(){
this.title="Vue Hello" } } })

转载于:https://www.cnblogs.com/dayangcong/p/8067300.html

你可能感兴趣的文章