mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-27 01:23:55 +08:00
28 lines
438 B
Vue
28 lines
438 B
Vue
<route lang="jsonc" type="page">
|
|
{
|
|
"layout": "default",
|
|
"style": {
|
|
"navigationBarTitleText": "分包页面"
|
|
}
|
|
}
|
|
</route>
|
|
|
|
<script lang="ts" setup>
|
|
// code here
|
|
</script>
|
|
|
|
<template>
|
|
<view class="text-center">
|
|
<view class="m-8">
|
|
http://localhost:9000/#/pages-sub/demo/index
|
|
</view>
|
|
<view class="text-green-500">
|
|
分包页面demo
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
//
|
|
</style>
|