You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
424 B
25 lines
424 B
<template>
|
|
<button class="mai-more-btn" @click="onClick">了解更多</button>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
const props = defineProps(['url']);
|
|
const router = useRouter();
|
|
|
|
function onClick() {
|
|
router.push(props.url);
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mai-more-btn {
|
|
width: 270px;
|
|
height: 80px;
|
|
background: $white;
|
|
border-radius: 50px;
|
|
border: 1px solid #979797;
|
|
font-size: 28px;
|
|
}
|
|
</style>
|