15 lines
268 B
Vue
15 lines
268 B
Vue
<script setup lang="ts">
|
|
import MaterialView from './components/MaterialView.vue';
|
|
|
|
// 禁用右键菜单
|
|
document.addEventListener('contextmenu', (e) => e.preventDefault());
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<MaterialView></MaterialView>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|