commonDeclare.js 315 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10
export default{
    data(){
        return {
            version:"1.0",
            trnName:"",
        }
    },
    computed:{
        declareParams(){
            return {
潘际乾 committed
11 12
                version: this.version,
                trnName: this.root ? this.root.trnName : this.trnName,
fukai committed
13 14 15 16
            }
        }
    }
}