10 lines
316 B
TypeScript
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 }); */ |