首次提交

This commit is contained in:
何江明
2025-02-28 16:19:58 +08:00
commit 15014e22aa
92 changed files with 15941 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<template>
<view class="container">
<button @click="showModel">uni.showModal</button>
</view>
</template>
<script>
export default {
data() {
return {}
},
methods: {
showModel() {
uni.showModal({
content: this.$t('api.message'),
success: (res) => {
console.log(res);
}
})
}
}
}
</script>
<style>
</style>