首页 > 代码库 > VUE的使用方法

VUE的使用方法

vueInit: function() {
    var _this = this;
    this.vue = new Vue({
        el: ‘#pa‘,
        data: {
            //存放初始化数据
        },
        computed:{
            fulls:function(){
                //计算属性,也会在数据发生变化时执行
            },
            halfs:function(){

            }
        },
        methods:{
            tagClick:function(){
                //在‘methods’ 对象中定义方法,页面中使用v-on:click="tagClick"调用

            }

        }

 

VUE的使用方法