navigate.vue 182 Bytes
Newer Older
xinzhedeai's avatar
xinzhedeai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<template>
	<view>
		<page-head :title="title"></page-head>
	</view>
</template>
<script>
	export default {
		data() {
			return {
				title: '新建的页面'
			}
		}
	}
</script>