App.vue
入口主组件。
html
<template>
<router-view />
<cool />
</template>
<script setup lang="ts">
import Cool from "/@/cool/index.vue";
</script>