首先 下載
npm install vue-class-component vue-property-decorator --save-dev
一梭子直接干;
其次,咱來說說它們的區別與聯系:
vue-property-decorator社區出品;vue-class-component官方出品
vue-class-component提供了Vue、Component等;
vue-property-decorator深度依賴了vue-class-component,拓展出了更多操作符:@Prop、@Emit、@Inject、@Model、@Provide、@Watch;
開發時正常引入vue-property-decorator就行
引入后寫vue代碼就是如此,
import {Component, Prop, Vue} from 'vue-property-decorator'@Componentexport default class App extends Vue { name:string = 'Simon Zhang' // computed get MyName():string { return `My name is ${this.name}` } // methods sayHello():void { alert(`Hello ${this.name}`) } mounted() { this.sayHello(); }}
相當于
export default { data () { return { name: 'Simon Zhang' } }, mounted () { this.sayHello() }, computed: { MyName() { return `My name is ${this.name}` } }, methods: { sayHello() { alert(`Hello ${this.name}`) }, }}
大佬都說爽的一批;
然鵝菜鳥我遇到問題一堆,以下做個積累總結:
1、寫法問題:引入組件和接收父組件傳過來的參數
@Component({ components: { XXXX }, props: { mapFlag: Number }})
2、獲取refs,在其后面加上as HTMLDivElement(不知道是不是這插件引起的,懶得管,直接干就是)
let layoutList:any = this.$refs.layout as HTMLDivElement
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。
新聞熱點
疑難解答