feat: solutions/aida

This commit is contained in:
2026-05-15 16:41:52 +08:00
parent 99af8da607
commit 5158b63ddd
12 changed files with 913 additions and 154 deletions

View File

@@ -17,7 +17,7 @@
</template>
<script setup lang="ts">
import { ref, onMounted, onUnmounted } from "vue";
import { ref } from "vue";
const max = ref(98 * Math.PI);
const progress = ref(0);
const handleScroll = (e: number) => {

View File

@@ -1,17 +1,5 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
</script>
<template>
<header class="header">
@@ -22,4 +10,4 @@ const {} = toRefs(data);
.header{
position: relative;
}
</style>
</style>

View File

@@ -29,7 +29,7 @@
</header>
</template>
<script setup lang="ts">
import { ref, onMounted, onUnmounted } from "vue";
import { ref } from "vue";
import { useRoute } from "vue-router";
const route = useRoute();
console.log(route);
@@ -195,4 +195,4 @@
}
}
}
</style>
</style>