Files
Code-Create/src/pages/my-account/subscriptions.vue
李志鹏 9eeb29da31 111
2026-05-19 10:36:47 +08:00

16 lines
312 B
Vue

<template>
<div class="subscriptions">
<tip-box type="success" title="You have no active subscriptions." />
</div>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue'
import tipBox from './tip-box.vue'
</script>
<style scoped lang="less">
.subscriptions {
width: 100%;
}
</style>