navigate.uvue 194 字节
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1 2 3 4 5 6 7 8 9 10 11 12
<template>
  <page-head :title="title"></page-head>
</template>

<script>
  export default {
    data() {
      return {
        title: '新建的页面'
      }
    }
  }
13
</script>