17 lines
209 B
Vue
17 lines
209 B
Vue
<template>
|
|
<view>
|
|
<up-button @click="toDetail">toDetail</up-button>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
function toDetail(){
|
|
uni.navigateTo({
|
|
url:'/pages/video/detail'
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|