This commit is contained in:
李志鹏
2026-05-19 10:36:47 +08:00
parent bcaeda6217
commit 9eeb29da31
5 changed files with 39 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
<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>