resource.uvue 420 字节
Newer Older
lizhongyi_'s avatar
lizhongyi_ 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
<template>
	<view>
		<page-head :title="title"></page-head>
		<image :src="logo" mode="aspectFit" style="width: 100%;"></image>
			
	</view>
</template>
<script>
	
	import { getLogoPath } from '../../uni_modules/uts-advance'
	
	
	export default {
		
		data() {
			return {
				title: '资源加载示例',
				logo:""
			}
		},
		onLoad:function(){
			this.logo = getLogoPath()
		}
		
	}
</script>

<style>

  
</style>