Blame view

pages/component/navigator/navigate/navigate.vue 182 Bytes
4b045f7c   刘淇   江阴初始化项目
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>