<template> <span class="app-caption">{{caption}}</span> </template> <script lang='ts'> import { Vue, Component, Prop } from 'vue-property-decorator'; @Component({}) export default class AppCaption extends Vue { /** * 按钮标题 * * @type {string} * @memberof AppButton */ @Prop() public caption?: string; } </script> <style lang="scss"> @import './app-caption.scss'; </style>