21 lines
239 B
Vue
21 lines
239 B
Vue
|
<template>
|
||
|
<div class="decoration-3">
|
||
|
<img src="./img/decoration.gif" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'Decoration3'
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less">
|
||
|
.decoration-3 {
|
||
|
|
||
|
img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|