bonus-ui/src/views/home/components/provincial/Bottom2.vue

28 lines
418 B
Vue
Raw Normal View History

2026-01-22 09:24:00 +08:00
<template>
<div>
<TitleBox titleText="装备在用率统计" @handleMore="handleMore" />
</div>
</template>
<script>
import TitleBox from './TitleBox'
export default {
name: 'Bottom2',
components: {
TitleBox,
},
data() {
return {}
},
mounted() {},
methods: {
handleMore() {
console.log('🚀 ~ methods.handleMore:')
},
},
}
</script>
<style lang="scss" scoped></style>