props参数赋值给data

export default {
    props:['ctype'],
    computed: {
      normalizedSize: function () {
        return this.ctype.trim().toLowerCase()
      }
    },
    data(){
        return{
            thistype:this.ctype
        }
    }
}
原文地址:https://www.cnblogs.com/dianzan/p/13803153.html