2025-04-10 16:37:20 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
import MaterialView from './components/MaterialView.vue';
|
|
|
|
|
2025-04-14 16:37:17 +08:00
|
|
|
// 禁用右键菜单
|
|
|
|
document.addEventListener('contextmenu', (e) => e.preventDefault());
|
|
|
|
|
2025-04-10 16:37:20 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MaterialView></MaterialView>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
</style>
|