提交
This commit is contained in:
28
src/pages/questionBank/questionBank.vue
Normal file
28
src/pages/questionBank/questionBank.vue
Normal 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>
|
||||
Reference in New Issue
Block a user