mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-17 00:15:53 +08:00
22 lines
238 B
Vue
22 lines
238 B
Vue
<template>
|
|
<div>
|
|
<company />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import company from './company.vue'
|
|
export default {
|
|
components: {
|
|
company,
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|