46 lines
431 B
Plaintext
46 lines
431 B
Plaintext
![]() |
<style lang="less">
|
||
|
|
||
|
.header {
|
||
|
width: 100%;
|
||
|
height: 536rpx;
|
||
|
z-index: -10;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
<template>
|
||
|
<div>my</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import wepy from '@wepy/core'
|
||
|
import store from '@/store'
|
||
|
import { mapActions } from '@wepy/x'
|
||
|
|
||
|
wepy.component({
|
||
|
store,
|
||
|
hooks: {
|
||
|
},
|
||
|
|
||
|
data: {
|
||
|
active: 0
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
|
||
|
},
|
||
|
|
||
|
ready() {
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
<config>
|
||
|
{
|
||
|
navigationBarTitleText: ''
|
||
|
}
|
||
|
</config>
|