33 lines
514 B
Vue
33 lines
514 B
Vue
<template>
|
|
<view class="container">
|
|
<aum></aum>
|
|
<investors></investors>
|
|
<manage></manage>
|
|
<investment></investment>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import aum from "@/components/aum.vue";
|
|
import investors from "@/components/investors.vue";
|
|
import manage from "@/components/manage.vue";
|
|
import investment from "@/components/investment.vue";
|
|
export default {
|
|
components: {
|
|
aum,
|
|
investors,
|
|
manage,
|
|
investment
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|