object.uvue 701 字节
Newer Older
shutao-dc's avatar
shutao-dc 已提交
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 32 33 34 35 36 37 38 39
<template>
	<view>
		<native-button class="native-button" style="width: 200px; height: 100px;" :text="buttonText" @tap="ontap"  @load="onload"></native-button>
	</view>
</template>

<script>

	export default {
		data() {
			return {
				title: 'Hello',
				buttonText: "封装object实现的button",
				isLoad: false
			}
		},
		onLoad() {

		},
		methods: {
			ontap(e: UniObjectCustomEvent) {
				console.log("native-button----------"+e.type)
			},
			onload() {
				//标记已初始化 用于自动化测试
				this.isLoad = true
			}
		}
	}
</script>

<style>
	.native-button {
		height: 100px;
		width: 100px;
		margin: 100px auto 25px auto;
	}

</style>