123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="icon" href="../../logo.svg" />
- <title>vue</title>
- </head>
- <body>
- <div id="root"></div>
- <script src="../../vue.js"></script>
- <script>
- Vue.config.productionTip = false; // 阻止 vue 在启动时生成生产提示。
- new Vue({
- el: "#root",
- data: {},
- });
- </script>
- </body>
- </html>
|