28 lines
407 B
Vue
28 lines
407 B
Vue
<template>
|
|
<div>
|
|
<TitleBox titleText="项目装备" @handleMore="handleMore" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TitleBox from '../TitleBox'
|
|
|
|
export default {
|
|
name: 'Top3',
|
|
components: {
|
|
TitleBox,
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
mounted() {},
|
|
methods: {
|
|
handleMore() {
|
|
console.log('🚀 ~ methods.handleMore:')
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|