15 lines
182 B
Vue
15 lines
182 B
Vue
|
<template>
|
||
|
<view>
|
||
|
<page-head :title="title"></page-head>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
title: '新建的页面'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|