27 lines
272 B
Vue
27 lines
272 B
Vue
|
|
<template>
|
||
|
|
<div class="answerAdd">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "answerAdd",
|
||
|
|
appName: "进行回答",
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
},
|
||
|
|
onShow() {},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.answerAdd {
|
||
|
|
|
||
|
|
}
|
||
|
|
</style>
|