Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to load about components asynchronously in Vue

2025-04-01 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of how to load about components asynchronously in Vue, the content is detailed and easy to understand, the operation is simple and fast, and has a certain reference value, I believe you will have something to gain after reading this Vue article on how to load about components asynchronously, let's take a look.

Load about components asynchronously

About.js

Vue.component ('about', {template:' ABOUT PAGE'})

Html Code:

/ home / about function load (componentName, path) {return new Promise (function (resolve, reject) {var script = document.createElement ('script'); script.src = path; script.async = true; script.onload = function () {var component = Vue.component (componentName); if (component) {resolve (component)) } else {reject ();}} document.body.appendChild (script);}) } var router = new VueRouter ({routes: [{path:'/', redirect:'/ home'}, {path:'/ home', component: {template: 'HOME PAGE'}}, {path:' / about', component: function (resolve, reject) {load ('about') 'static/js/business/about.js') .then (resolve, reject) }}]}); var app = new Vue ({el:'# app', router: router}); that's all for the article on "how to load about components asynchronously in Vue". Thank you for reading! I believe you all have some knowledge about "how to load about components asynchronously in Vue". If you want to learn more, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report