[Vue @Component] Extend Vue Components in TypeScript

本文介绍如何使用TypeScript继承Vue组件,通过定义父组件并在子组件中复用其属性和方法,展示了如何覆盖默认行为及触发继承树中的钩子。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

This lesson shows how you can extend and reuse logic in Vue components using TypeScript inheritance. It will take you through extending a component, its properties and methods, and how hooks are triggered along the inheritance tree.

 

We can define a Parent.ts file, which only contains the logic without any template:

import { Component, Vue } from 'vue-property-decorator';

@Component
export default class Parent extends Vue {
    created() {
        console.log("Parent is created")
    }

    click() {
        console.log("Parent is clicked")
    }

    parentClicked() {
        console.log("Parent is clicked")
    }
}

 

Then we can extends this Parent Class from a vue component:

<template>
  <div class="hello">
    <h1>{{ msg }}</h1>
    <h2>{{ fullMessage }}</h2>
    <button @click="click">Click</button>
    <button @click="parentClicked">Parent Click</button>
  </div>
</template>

<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import Parent from './Parent';

@Component
export default class HelloWorld extends Parent {
  @Prop() private msg!: string;

  // replace computed props
  get fullMessage() {
    return `${this.msg} should be fullmessage from a getter`
  }

  created() {
    console.log("Component is created")
  }

  click() {
    alert('Should replace what used to be defined in methods objects')
  }
}
</script>

 

Once we extends from Parent, HelloWorld Component can inherit its Parent class's methods and props.

 For example:

Will call parentClicked method from Parent Class from HelloWorld Component.

<!-- HelloWorld.vue -->
<button @click="parentClicked">Parent Click</button>

 

If we don't define 'click' method in HelloWolrd component, it will using Parent's click() method.

转载于:https://www.cnblogs.com/Answer1215/p/9410784.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值