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. vue --version or vue -V
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) Here you can see that there is already an option for a Vue 3 project, then select the last option Manually select features 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. When you select the first option, you will be prompted to select the version of Vue. Select the second one here. Here is whether the routing uses history mode, which requires the cooperation of the backend. I do not choose it here. This section chooses CSS language and other configurations according to your needs and preferences 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. That's right, this is vant3 tailored for vue3, switch version to 3, and then read the documentation Here is recommended to introduce on demand: After configuration, it is best to restart the project to avoid the configuration from taking effect. 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:
|
<<: Two ways to export csv in win10 mysql
>>: Methods and steps for deploying multiple war packages in Tomcat
Table of contents Preface question principle test...
Table of contents Methods of String Object Method...
Table of contents uni-app Introduction HTML part ...
Achieve results html <h2>CSS3 Timeline</...
Now many people are joining the ranks of website ...
The query data in the xml price inquiry contains ...
This article example shares the specific code of ...
This article will introduce how to use explain to...
How to get the container startup command The cont...
This article shares the specific code of JavaScri...
Table of contents 1. What are options? 2. What at...
1. Check the database time zone show variables li...
Sysbench is an excellent benchmark tool that can ...
Table of contents 1. Simple to use 2. Use DISTINC...
CentOS6.9+Mysql5.7.18 source code installation, t...