Study notes to write the first program of Vue

Study notes to write the first program of Vue

Here we use the official document CDN

<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>

1. Write an HTML, the first Vue program

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title> 
</head>
<body>
<!--view layer template-->
<div id="app">
    {{message}}
</div>
 <!--Import vue.js-->
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
 <script>
    var vm = new Vue({
        el:"#app",
        //model: data:{
            message:"hello,vue"
        }
    });
 </script>
 </body>
</html>

Note the view template and data

View

Model

ViewModel: Two-way binding means that if your front-end data changes, the data in your data will also change.

You can change the data without refreshing the page and then synchronize it to the front-end display

Decision loop

  • if
  • for

event

  • on

787 Principle

To learn Vue, we must know its 7 properties, 8 methods, and 7 instructions

el attribute

It is used to instruct the Vue compiler where to start parsing the Vue syntax, which can be said to be a placeholder.

data attribute

It is used to organize the attributes abstracted from the view. It can be said that the view data is abstracted and stored in the data.

template attribute

Used to set the template, which will replace page elements, including placeholders.

Methods Attribute

Place the business logic in the page. JS methods are generally placed in methods.

Render Properties

Creating a real Virtual Dom

computed properties

Used to calculate

watch property

watch:function(new,old){}

Monitor changes in data

Two parameters, one returns the new value, one returns the old value

The above is the detailed content of the first program of the study note vue. For more information about vue programs, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Learn the key knowledge that must be mastered in the Vue framework
  • In-depth study of the usage and principles of Vue nextTick
  • Learn Vue component examples
  • Learn Vue.js conditional rendering
  • Learn Vue.js calculated properties
  • Simple learning vue directive

<<:  Which is faster among MySQL full-text index, joint index, like query, and json query?

>>:  Installation steps of Ubuntu 20.04 double pinyin input method

Recommend

MySQL 5.7 Common Data Types

——Notes from "MySQL in Simple Terms (Second ...

How to set list style attributes in CSS (just read this article)

List style properties There are 2 types of lists ...

Problems with creating placeholders for HTML selection boxes

I'm using a placeholder in a text input and i...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...

Detailed steps to start the Django project with nginx+uwsgi

When we develop a web project with Django, the te...

Examples of using Docker and Docker-Compose

Docker is an open source container engine that he...

Detailed explanation of the pitfalls of nginx proxy socket.io service

Table of contents Nginx proxies two socket.io ser...

Introduction to Jenkins and how to deploy Jenkins with Docker

1. Related concepts 1.1 Jenkins Concepts: Jenkins...

Vue implements div wheel zooming in and out

Implement div wheel zooming in and out in Vue pro...

react-beautiful-dnd implements component drag and drop function

Table of contents 1. Installation 2.APi 3. react-...

Angular Cookie read and write operation code

Angular Cookie read and write operations, the cod...

Vue realizes the card flip effect

This article example shares the specific code of ...

Detailed explanation of MySQL file storage

What is a file system We know that storage engine...