Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<template>
<VoListItem
:active="dialog"
link
:prepend-icon="`svg:${mdiCreditCardOutline}`"
rounded="lg"
title="Subscriptions"
>
<VoSubscriptionDialog v-model="dialog" />
</VoListItem>
</template>

<script lang="ts" setup>
// Icons
import { mdiCreditCardOutline } from '@mdi/js'

const dialog = shallowRef(false)
</script>
12 changes: 6 additions & 6 deletions packages/one/src/components/subscription/VoSubscriptionPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@
<template>
<div class="px-3">
<v-card-text>
<VoDialogSubheader
text="The Vuetify One subscription is a great way to support the Vuetify team and get access to exclusive features and content."
title="Vuetify One"
/>
<div class="text-center">
<VoDialogSubheader
text="The Vuetify One subscription is a great way to support the Vuetify team and get access to exclusive features and content."
title="Vuetify One"
/>
</div>

<v-window :model-value="window">
<v-window-item value="subscribe">
<VoSubscriptionSubscribe v-model:interval="interval" v-model:type="type" />
<br>
<VoSubscriptionPerks :type="type" />
</v-window-item>

<v-window-item value="status">
Expand Down
89 changes: 0 additions & 89 deletions packages/one/src/components/subscription/VoSubscriptionPerks.vue

This file was deleted.

Loading