Files
sociology_app/pages/component/navigator/navigate/navigate.vue
2025-03-12 11:39:31 +08:00

15 lines
192 B
Vue

<template>
<view>
<page-head :title="title"></page-head>
</view>
</template>
<script>
export default {
data() {
return {
title: "新建的页面",
};
},
};
</script>