45 lines
588 B
Vue
45 lines
588 B
Vue
<template>
|
|
<view class="app">
|
|
<view class="content">
|
|
个人信息
|
|
<view class="title">
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
form:{
|
|
name:''
|
|
}
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.app {
|
|
background-color: #fff;
|
|
height: 100vh;
|
|
.content{
|
|
// width: 111px;
|
|
// height: 27px;
|
|
font-size: 28rpx;
|
|
font-family: SourceHanSansSC-Medium, SourceHanSansSC;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
line-height: 38rpx;
|
|
padding-left: 20rpx;
|
|
}
|
|
}
|
|
</style> |