greenPro/pages/component/navigator/navigate/navigate.vue

15 lines
182 B
Vue
Raw Normal View History

2024-06-02 14:51:29 +00:00
<template>
<view>
<page-head :title="title"></page-head>
</view>
</template>
<script>
export default {
data() {
return {
title: '新建的页面'
}
}
}
</script>