123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="pure-image" :style="custStyle" @click="$emit('click')">
- <div />
- </div>
- </template>
-
- <script>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- </script>
-
- <style lang="scss" scoped>
- .pure-image {
- background-position: center center;
- background-size: cover;
- background-repeat: no-repeat;
- width: 100%;
- height: 100%;
- }
- </style>
|