fileRead.uvue 248 字节
Newer Older
lizhongyi_'s avatar
lizhongyi_ 已提交
1 2 3
<template>
	<view>
		<page-head :title="title"></page-head>
4
		
lizhongyi_'s avatar
lizhongyi_ 已提交
5 6 7 8 9 10 11 12
	</view>
</template>
<script>
	
	export default {
		
		data() {
			return {
13
				title: '文件读取示例-todo',
lizhongyi_'s avatar
lizhongyi_ 已提交
14 15 16 17 18
			}
		},

		methods: {
			
19
			
lizhongyi_'s avatar
lizhongyi_ 已提交
20 21 22 23 24 25 26 27
		}
	}
</script>

<style>

  
</style>