当前位置: 首页 > 工具软件 > Hallo.js > 使用案例 >

vue.js入门Helloworld

蔚弘量
2023-12-01

直接上代码

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
    <script src="https://cdn.jsdelivr.net/vue/latest/vue.js"></script>
</head>
</head>
<body>
<div id="app">
    {{ message }}
</div>
</body>
<script>
    new Vue({
        el: '#app',
        data: {
            message: 'Hello Vue.js!'
        }
    })
</script>
</html>
 类似资料: