28 lines
418 B
Vue
28 lines
418 B
Vue
|
|
<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>
|