This commit is contained in:
2023-08-12 22:15:27 +08:00
commit c46b07d1da
421 changed files with 46336 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<template>
<view>
<u-navbar title="顺序答题" @rightClick="rightClick" :autoBack="true">
</u-navbar>
<Question />
</view>
</template>
<script>
import Question from './components/Question.vue';
export default {
components: {Question},
data() {
return {
}
},
methods: {
rightClick(){
console.log('返回');
}
}
}
</script>
<style>
</style>