deming/pageE/mine/MineHelp.vue
2020-06-01 16:51:11 +08:00

24 lines
369 B
Vue

<template>
<view class="mine-help">
<view v-for="(item, index) in helpList" :key="index" class="help-item">
<view>使用帮助</view>
<img src="../static/mine/21.png" />
</view>
</view>
</template>
<script>
export default {
data() {
return {
helpList: [1,1,1,1]
}
}
}
</script>
<style lang="scss" scoped>
.mine-help {
.help-item {
}
}
</style>