14 lines
229 B
Vue
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> |