forked from ccsens_fe/tall-mui-3
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.
23 lines
335 B
23 lines
335 B
<template>
|
|
<view class="container p-4">
|
|
<view>
|
|
<u-button type="primary" size="default">iframe 验证</u-button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return { title: 'Hello' };
|
|
},
|
|
onLoad() {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.title {
|
|
font-size: 20px;
|
|
}
|
|
</style>
|
|
|