chore(组件): 组件尽量使用异步导入模式
This commit is contained in:
@@ -38,14 +38,12 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import uniStatusBar from '@/pages_tool/components/uni-status-bar/uni-status-bar.vue';
|
||||
import uniIcons from '@/components/uni-icons/uni-icons.vue';
|
||||
|
||||
export default {
|
||||
name: 'UniNavBar',
|
||||
components: {
|
||||
uniStatusBar,
|
||||
uniIcons
|
||||
uniStatusBar: () => import('@/pages_tool/components/uni-status-bar/uni-status-bar.vue'),
|
||||
uniIcons: () => import('@/components/uni-icons/uni-icons.vue'),
|
||||
},
|
||||
props: {
|
||||
title: {
|
||||
|
||||
Reference in New Issue
Block a user