19 lines
374 B
Vue
19 lines
374 B
Vue
<template>
|
|
<div class="mb-4" @click="toAgentVip">
|
|
<img
|
|
src="@/assets/images/vip_banner.png"
|
|
class="rounded-xl shadow-lg"
|
|
alt=""
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const router = useRouter();
|
|
const toAgentVip = () => {
|
|
router.push({ name: "agentVipApply" });
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|