material-editor/src/App.vue

15 lines
268 B
Vue
Raw Normal View History

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>