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

<style>

  
</style>