Files
zyt/wx/pages/index/index.vue
T
2026-03-04 15:32:30 +08:00

14 lines
229 B
Vue

<template>
<view>
<button @click="jumpUrl">跳转分包</button>
</view>
</template>
<script>
export default {
methods: {
jumpUrl() {
uni.navigateTo({ url: "/TUICallKit/pages/call" });
},
},
};
</script>