欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue快速入门

程序员文章站 2022-06-06 19:26:00
...

下载安装VScode
安装三个插件
live server
vetur
Vue.js with Typ…
vue快速入门
配置setting

{
    "editor.formatOnType": true,
    "editor.formatOnSave": true,
    "editor.fontSize": 18,
    "liveServer.settings.donotShowInfoMsg": true,
}

新建项目
vue快速入门
在app.js 实例化vue

// 实例化vue
new Vue({
    el: "#vue-app",
    data() {
        return {
            name: "aaaa",
            qq: "123"
        }
    }
});

index.html内容

<!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">
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    <title>vue cdn</title>
</head>

<body>
    <div id="vue-app">
        <h1>hello, {{name}}</h1>
        <h1>你的QQ{{qq}}</h1>
    </div>

</body>
<script src="app.js"></script>

</html>```