22 lines
382 B
Vue
22 lines
382 B
Vue
<template>
|
|
<view class="ai-advisor-page">
|
|
<ai-advisor-view />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import AiAdvisorView from '@/components/ai-advisor/AiAdvisorView.vue';
|
|
|
|
export default {
|
|
name: 'AiAdvisorPage',
|
|
components: { AiAdvisorView },
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.ai-advisor-page {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
background-color: #f7f8fa;
|
|
}
|
|
</style> |