mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 01:48:47 +08:00
50 lines
435 B
Plaintext
50 lines
435 B
Plaintext
<style lang="less">
|
|
|
|
.header {
|
|
width: 100%;
|
|
height: 536rpx;
|
|
z-index: -10;
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
<template>
|
|
|
|
<div>
|
|
|
|
</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>
|