photoAlbum.vue 367 Bytes
Newer Older
zhoucong's avatar
zhoucong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template>
    <view class="content">
		升级中.....
	</view>
</template>
<script>
export default {
    data() {
        return {
		}
    },
	onLoad(){//代替 vue 里面的 created
	},
	onReady() {//代替 vue 里面的 mounted
	},
    methods: {
	}
}
</script>
<style lang="scss" scoped>
	.content{padding: 0 20rpx;box-sizing: border-box;margin: 0 auto;}
</style>