deming/pageE/mine/MineHelp.vue

24 lines
369 B
Vue
Raw Normal View History

2020-06-01 08:51:11 +00:00
<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>