20 lines
286 B
Vue
20 lines
286 B
Vue
<template>
|
|
<div class="gridMemberPoints">
|
|
<img src="./img/my/grid-point.png" alt="" class="right-icon">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "gridMemberPoints",
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.gridMemberPoints {
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|