You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
381 B
28 lines
381 B
<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>
|
|
|