mirror of
https://github.com/sub-store-org/Sub-Store.git
synced 2025-08-10 00:52:40 +00:00
31 lines
514 B
Vue
31 lines
514 B
Vue
<template>
|
|
<v-bottom-navigation
|
|
app
|
|
fixed
|
|
grow
|
|
color="primary"
|
|
v-model="activeItem"
|
|
>
|
|
<v-btn :to="{path: '/'}" value="subscription">
|
|
<span>订阅</span>
|
|
<v-icon>mdi-cloud</v-icon>
|
|
</v-btn>
|
|
|
|
<v-btn :to="{path: '/user'}" value="user">
|
|
<span>我的</span>
|
|
<v-icon>mdi-account</v-icon>
|
|
</v-btn>
|
|
</v-bottom-navigation>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => {
|
|
return {
|
|
activeItem: 'subscription'
|
|
}
|
|
}
|
|
}
|
|
</script>
|