Files
jobslink-user-clent/pageMy/my/vip/index.vue

34 lines
405 B
Vue
Raw Permalink Normal View History

2024-02-02 14:44:30 +08:00
<template>
<success v-if="isVip"></success>
<bind v-else></bind>
</template>
<script>
import bind from "./bind.vue"
import success from "./success.vue"
import {
mapGetters
} from "vuex"
export default {
components: {
bind,
success
},
data() {
return {
state: ""
}
},
computed: {
...mapGetters(["isVip"])
}
}
</script>
<style>
page{
height: 100%;
}
</style>