rubick/tpl/src/App.vue
2021-12-17 17:47:51 +08:00

26 lines
354 B
Vue

<template>
<router-view />
</template>
<script setup>
import { useRouter } from "vue-router";
const router = useRouter();
window.rubick.onPluginEnter(({ code }) => {
const current = window.exports[code];
router.push({
name: current.mode,
params: {
code,
},
});
});
</script>
<style>
* {
margin: 0;
padding: 0;
}
</style>