Skip to content

表单页面数据(data)

设计者可以在脚本中按照Vue数据规范定义页面中使用的数据。如:在下拉选择多选框组单选框组等字段中使用数据中的数据。

示例脚本

js
{
    data: function () { 
        return { 
            favoriteTypes:[ 
                { 
                    id:'music', 
                    label:'音乐'
                }, 
                { 
                    id:'sports', 
                    label:'运动'
                }, 
                { 
                    id:'swim', 
                    label:'游泳'
                } 
            ] 
        } 
    }, 
    created: function () {
        console.log('script.created');
    },
    mounted: function () {
        console.log('script.mounted');
        var that = this;
        setTimeout(function () {
            that.setup();
        }, 0);
    },
    beforeDestroy: function () {

    },
    methods: {
        setup: function () {
            var that = this;
            console.log('script.setup');
        }
    }
}