21 lines
389 B
Vue
Raw Normal View History

<route lang="json5" type="page">
{
2024-01-30 21:16:18 +08:00
style: { navigationBarTitleText: '分包页面 标题' },
}
</route>
<template>
2024-01-30 20:22:35 +08:00
<view class="text-center">
2024-03-27 20:43:31 +08:00
<view class="m-8">http://localhost:9000/#/pages-sub/demo/index</view>
<view class="text-green-500">分包页面demo</view>
2024-01-30 20:22:35 +08:00
</view>
</template>
<script lang="ts" setup>
2024-01-24 15:28:38 +08:00
// code here
</script>
<style lang="scss" scoped>
//
</style>