34 lines
459 B
Vue
34 lines
459 B
Vue
<template>
|
|
<view class="fullHeight">
|
|
<headers :showBack="true">
|
|
<view class="headerName">
|
|
版本信息
|
|
</view>
|
|
</headers>
|
|
<scroll-view scroll-y="true" class="pageContent">
|
|
<view>
|
|
444
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import headers from "../../components/headers/headers.vue"
|
|
export default {
|
|
components:{headers},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|