orderPay.vue 353 Bytes
Newer Older
cc_inu's avatar
cc_inu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<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>