This commit is contained in:
Your Name
2026-03-06 14:27:24 +08:00
parent 9a1b67ca18
commit 52bb80e2f1
134 changed files with 5337 additions and 401 deletions
+14
View File
@@ -0,0 +1,14 @@
<template>
<view>
<button @click="jumpUrl">跳转分包</button>
</view>
</template>
<script>
export default {
methods: {
jumpUrl() {
uni.navigateTo({ url: "/TUICallKit/pages/call" });
},
},
};
</script>