Summary of vue construction and routing usage

php中世界最好的语言
Release: 2018-05-10 10:45:24
Original
1518 people have browsed it

This time I will bring you a summary of vue construction and routing usage. What are theprecautionsfor vue construction and routing usage? The following is a practical case, let’s take a look.

1. Three mounting methods for components

Automatic mounting

var app3 = new Vue({ el: '#app-3', data: { seen: true } })
Copy after login

Manual mounting

// 可以实现延迟按需挂载 

{{name}}