new_app/pages/video/index.vue

17 lines
238 B
Vue

<template>
<view class="u-p-60">
<up-button @click="toDetail">toDetail</up-button>
</view>
</template>
<script setup>
function toDetail(){
uni.navigateTo({
url:'/pages/video/detail?courseId=1208'
})
}
</script>
<style>
</style>