16 lines
312 B
Vue
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>
|