|
@@ -0,0 +1,20 @@
|
|
|
+// import { PaperClipIcon } from '@heroicons/vue/solid'
|
|
|
+import { defineComponent } from 'vue'
|
|
|
+import styles from './index.module.less'
|
|
|
+import finch from './images/finch.png'
|
|
|
+import demo from './images/demo.png'
|
|
|
+export default defineComponent({
|
|
|
+ name: 'downLoad',
|
|
|
+ render() {
|
|
|
+ return (
|
|
|
+ <div class={styles.bgWhite}>
|
|
|
+ <div class={styles.container}>
|
|
|
+ <div class="imgWrap">
|
|
|
+ <img src={demo} alt="" />
|
|
|
+ <img src={finch} class={styles.finch} alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+})
|