18 lines
385 B
Vue
18 lines
385 B
Vue
<template>
|
|
<AlertBanner
|
|
title="您的卡片已过期。请更新您的支付信息。"
|
|
type="warning"
|
|
>
|
|
<Button class="ml-auto" route="/billing" variant="outline">
|
|
更新卡片
|
|
</Button>
|
|
</AlertBanner>
|
|
</template>
|
|
<script>
|
|
import AlertBanner from './AlertBanner.vue';
|
|
|
|
export default {
|
|
name: 'AlertCardExpired',
|
|
components: { AlertBanner }
|
|
};
|
|
</script> |