diff --git a/src/App.vue b/src/App.vue index 4d73cf6..5955fa3 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,7 +1,32 @@ - + - + diff --git a/src/components/Cooperation.vue b/src/components/Cooperation.vue index 10d7bdf..4669670 100644 --- a/src/components/Cooperation.vue +++ b/src/components/Cooperation.vue @@ -9,7 +9,8 @@ :theme="theme" /> -
+ +
+ + diff --git a/src/pages/Hardware.vue b/src/pages/Hardware.vue index 7b60103..80ec7d7 100644 --- a/src/pages/Hardware.vue +++ b/src/pages/Hardware.vue @@ -1,9 +1,5 @@ @@ -56,24 +51,11 @@ import SAccelerate from '@/static/img/hardware/s-accelerate.png' import TAccelerate from '@/static/img/hardware/t-accelerate.png' import Gif1 from '@/static/img/hardware/1.gif' import Gif2 from '@/static/img/hardware/2.gif' -import { ref } from 'vue' - -const isDrag = ref(false) - -const handlePress = e => { - // 背景虚化 - isDrag.value = true -} -const handleRelease = e => { - // 背景实体化 - isDrag.value = false -}