中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TypeScript+Vue插件vue-class-component的使用示例

發布時間:2021-07-20 10:48:04 來源:億速云 閱讀:226 作者:小新 欄目:web開發

這篇文章給大家分享的是有關TypeScript+Vue插件vue-class-component的使用示例的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

首先 下載

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'

@Component
export 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

感謝各位的閱讀!關于“TypeScript+Vue插件vue-class-component的使用示例”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

堆龙德庆县| 秦安县| 崇明县| 福泉市| 黑山县| 藁城市| 岳普湖县| 格尔木市| 印江| 河间市| 镇巴县| 吴忠市| 吉木萨尔县| 东至县| 江口县| 永嘉县| 普安县| 久治县| 兰坪| 麦盖提县| 长治县| 龙泉市| 常宁市| 鸡西市| 娄烦县| 夏河县| 灵武市| 金阳县| 全州县| 宝鸡市| 樟树市| 友谊县| 唐海县| 卓尼县| 聊城市| 惠安县| 尼勒克县| 浠水县| 清丰县| 静乐县| 当雄县|