You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<view class="container p-4">
|
|
|
|
<view>
|
|
|
|
<u-button type="primary" size="default" @tap="$u.route('/pages/plugin-test/plugin-test')">iframe 验证</u-button>
|
|
|
|
<u-button type="error" size="default" class="my-3" @tap="$u.route('/pages/rich-text/rich-text')">rich-text 验证</u-button>
|
|
|
|
<u-button type="warning" size="default" class="my-3" @tap="$u.route('/pages/pinch/pinch')">pinch 事件验证</u-button>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return { title: 'Hello' };
|
|
|
|
},
|
|
|
|
onLoad() {},
|
|
|
|
methods: {},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.title {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
</style>
|