Greasy Fork is available in English.
vue 3.4.37_vue.global.js fix to component
สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.org/scripts/503097/1424938/VueEntry.js
方法一:
window.VueEntry.createApp({template: '<div>{{message}}</div>', setup: () => ({message: 'hello world'})}).mount('body')
方法二:
// @require https://update.greasyfork.org/scripts/503097/1424931/VueEntry.js
const {reative} = window.VueEntry;
...