online-editor/src/main.ts
2025-05-12 11:01:45 +08:00

10 lines
316 B
TypeScript

import { createApp } from 'vue'
import './style.css'
import './assets/stylesheet.css'
import App from './App.vue'
createApp(App).mount('#app')
/* document.body.addEventListener('touchmove', function (e) {
e.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果)
}, { passive: false }); */