22 lines
240 B
Vue
22 lines
240 B
Vue
|
<template>
|
||
|
<view class="content">
|
||
|
页面 - 提问
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {};
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.content {
|
||
|
text-align: center;
|
||
|
height: 400upx;
|
||
|
margin-top: 200upx;
|
||
|
}
|
||
|
</style>
|