NO1 HelloWorld

98 阅读1分钟

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>Vue3__hello world</title>

</head>

<body>

    <div id="root"></div>


    <script src="https://unpkg.com/vue@next"></script>

    <script>

        // mvvm设计模式 m-model-数据 v-view-视图 vm-数据视图连接层

        // Vue应用

        const app = Vue.createApp({

            // 根组件的配置

            // 数据

            data() {

                return {

                    message'Hello World'

                }

            },

            // 模板

            template'<div>{{ message }}</div>'

        })



        // 根组件

        const vm = app.mount('#root')

    

    </script>

</body>

</html>