运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <title>My first Vue page</title> <style> #app { display: inline-block; padding: 10px; font-size: x-large; background-color: lightgreen; } </style> </head> <body> <h1>Vue Example</h1> <p>The message is taken from 'data' inside the Vue instance by writing {{ message }} inside the div with id="app".</p> <div id="app"> {{ message }} </div> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> <script> const app = Vue.createApp({ data() { return { message: "Hello World!" } } }) app.mount('#app') </script> </body> </html>