24 lines
369 B
Vue
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> |