banner.vue
364 Bytes
<template>
<div
@click="goToDetail(item, $router)"
class="banner">
{{ item.kg_name }} | {{ item.localism_type }}
</div>
</template>
<script setup>
import { goToDetail } from './methods'
const props = defineProps({
item: Object,
});
</script>
<style lang="less" scoped>
.banner {
color: #999999;
padding: 0.5rem 1rem
}
</style>