运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 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>Example with JavaScript inside {{ }}</h1> <p>The 'message' text from the Vue instance is put together with another text and a JavaScript expression. The JavaScript expression creates a random integer between 1 and 6.</p> <div id="app"> {{ message }} <br> {{'Random number: ' + Math.ceil(Math.random()*6) }} </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>