Implementation of vue3.0+vant3.0 rapid project construction

Implementation of vue3.0+vant3.0 rapid project construction

On September 18, 2020, vue.js 3.0 was officially released. I looked at the tutorials about 3.0 on the Internet and found that they were not complete enough. But in fact, the latest version of vuecli already supports the rapid construction of vue3.0 projects. This article will show you what new changes there are in vue3.0 and how to quickly build a vue3.0 project.

1. Project Construction

1. First of all, I don’t need to say much about the installation of nodejs, here is the official website address of nodejs.
2. Since the latest version of vuecli can quickly build 3.0, how to upgrade to the latest version? vue-cli official website address, do not know the execution command of vue-cli version

vue --version or vue -V 

I am on 4.5.7

Special attention:
Node version requirements
Vue CLI 4.x requires Node.js v8.9 or higher (v10 or higher is recommended). You can use n, nvm or nvm-windows to manage multiple Node versions on the same computer.

Bosses who have already installed vue-cli execute the command:

npm update -g @vue/cli

vue-cli is not installed. Execute the command:

npm install -g @vue/cli

Here I still recommend that you go to the official website to read the documents. The official website has very detailed information on installation, updates and version checking.

After installing the latest version of vuecli, execute the command:

vue create hello-world (this is your own project name)

You can see the following options: (the second vue3-test can be ignored)

The second vue3-test can be ignored

Here you can see that there is already an option for a Vue 3 project, then select the last option Manually select features

insert image description here

The first option is to select the version of vue. You must select it. Other routes, vuex, etc. can be selected according to your needs.

insert image description here

When you select the first option, you will be prompted to select the version of Vue. Select the second one here.

insert image description here

Here is whether the routing uses history mode, which requires the cooperation of the backend. I do not choose it here.

insert image description here

This section chooses CSS language and other configurations according to your needs and preferences

insert image description here

insert image description here

insert image description here

After creating a project according to your needs, use cd project name, and start the project with npm run serve!

2. Vue3 experience + vant introduction

Introduction of vant:

First, go to the official website of vant: vant official website address. I don't know if the careful bosses have found that there is a new version at the version number.

insert image description here

That's right, this is vant3 tailored for vue3, switch version to 3, and then read the documentation

insert image description here

Here is recommended to introduce on demand:

insert image description here

After configuration, it is best to restart the project to avoid the configuration from taking effect.
Find a button here

insert image description here

The example of creating and mounting a Vue instance in Vue 3.0 has been updated in main.js. Instead of using new Vue, createApp is used:

import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import http from './utils/http'; //Here is my own encapsulated axios
import { Button } from 'vant';

const app = createApp
//vue3.0 can no longer mount public method properties on the prototype object of vue as before //Here you can write the public method properties in the second parameter, which is an object //Component registration is called through the .use chain app(App, { http }).use(Button).use(store).use(router).mount('#app')

Here are just some examples that I think are the most convenient to use:

<template>
  <div class="home">
    {{ num }}----{{activeNum}}----{{refData}}
    <!-- vant component usage-->
    <van-button size="large" type="primary" @click="changeNum">changeNum</van-button>

    <van-button type="success" @click="routerPush">Route jump</van-button>
  </div>
</template>

<script>
//Which modules need to be introduced on demand import { toRefs, reactive, onMounted, getCurrentInstance,watch ,computed,ref} from "vue";
export default {
  name: "Home",
  // Same as vue2.0, accepts values ​​passed by parent components and values ​​passed in main.js props: ["http"],
  // Must be written in setup setup(props, context) {
    //The ctx here is similar to this in vue2
    const { ctx } = getCurrentInstance();
    //Routing this.$router
    const router = ctx.$router;
    //The encapsulated axios passed in by main.js
    const http = ctx.http;
     // I still don't recommend writing like this because it's troublesome to wrap a new responsive data with ref every time const refData = ref('1212') // ref wraps into a responsive object // I think it's more comfortable to write like this, similar to data in vue2
    const state = reactive({//The function receives a normal object and returns a responsive data object num: 0,
    });
    //I like to write calculated properties in objects because it is clearer to prevent the calculated property methods from being mixed together and difficult to distinguish. const computedData = {
      // Don't forget to import computed when writing calculated properties
      activeNum : computed(()=>state.num*2)
    }
    //I like to write methods in objects because they are clearer and prevent calculation of property methods from being mixed together and difficult to distinguish. const methods = {
      changeNum: () => {
        state.num++;
        // The data wrapped by ref must be obtained using .value refData.value++
      },
      routerPush() {
        //Route jump router.push({
          name: "test",
        });
      },
      //Network request async getUserInfo() {
        try {
          let { data } = await http.get("http://localhost:3000/xiaochengxu/");
          console.log(data);
        } catch (error) {
          console.log(error);
        }
      },
    };
    // Same as mounted in vue2. vue 3 removes the two lifecycles boforcreate and created. setup is the new lifecycle between these two lifecycles. onMounted(() => {
      methods.getUserInfo();
    });
    //Use of watchwatch(()=>state.num,value=>{
      console.log('num changed',value)
    })
    //Must return to the template to use return {
      ...toRefs(state), // Convert responsive objects to normal objects. You don't need state.num when using them. You can use num directly...methods, // Deconstruction assignment...computedData,
      refData
    };
  },
};
</script>

If you don't know how to use torefs, ref, isref, reactive, etc., please read this article, which introduces it in detail. I just use the writing method that I think is more convenient.

This is the end of this article about the implementation of vue3.0+vant3.0 quick project construction. For more relevant vue3.0+vant3.0 project construction content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue3.0 project construction and usage process
  • How to build a complete Vue3.0+ts project steps
  • Vue3.0 project construction summary (detailed steps)
  • Teach you how to build the vue3.0 project architecture step by step

<<:  Two ways to export csv in win10 mysql

>>:  Methods and steps for deploying multiple war packages in Tomcat

Recommend

Detailed explanation of JavaScript progress management

Table of contents Preface question principle test...

JavaScript String Object Methods

Table of contents Methods of String Object Method...

uniapp realizes the recording upload function

Table of contents uni-app Introduction HTML part ...

CSS3 timeline animation

Achieve results html <h2>CSS3 Timeline</...

Basic knowledge of website design: newbies please read this

Now many people are joining the ranks of website ...

Solution to the paging error problem of MySQL one-to-many association query

The query data in the xml price inquiry contains ...

Vue uses filters to format dates

This article example shares the specific code of ...

Standard summary for analyzing the performance of a SQL statement

This article will introduce how to use explain to...

Docker file storage path, modify port mapping operation mode

How to get the container startup command The cont...

JavaScript to dynamically load and delete tables

This article shares the specific code of JavaScri...

Detailed explanation of Vue options

Table of contents 1. What are options? 2. What at...

How to view and set the mysql time zone

1. Check the database time zone show variables li...

MySQL database implements OLTP benchmark test based on sysbench

Sysbench is an excellent benchmark tool that can ...

CentOS6.9+Mysql5.7.18 source code installation detailed tutorial

CentOS6.9+Mysql5.7.18 source code installation, t...