Basic usage and principle of SingleSpa micro front end
Let's talk about the disadvantages of singleSpa
Not flexible enough to dynamically load css filescss is not isolatedThere is no js sandbox mechanism (there is no global object, and the application switched every time is the same window)
The front-end micro touch can be used for a while qiankun micro front-end framework is very mature and i ...
Posted by the elegant on Sun, 20 Feb 2022 13:01:06 +0100
23_ Implementation of mini Vue for vue3 source code learning
Implementation of mini Vue for Vue3 source code learning
Implement Mini Vue
Here we implement a concise version of the mini Vue framework, which includes three modules:
Rendering system module;Responsive system module;Application entry module;
1, Implementation of rendering system
Rendering system, this module mainly includes three functio ...
Posted by mogster on Sun, 20 Feb 2022 09:44:30 +0100
Vue introduction and training cases - Music Player (search music, listen to songs, watch comments, watch mv, etc.) (continuously updated)
Vue overview
It is a javascript frameworkDOM operations can be simplifiedResponsive data driven
el: mount point
Scope of vue instance: vue will manage the elements hit by el option and its internal descendant elements.Other selectors can be used, but id selectors are recommendedOther double tags can be used, but HTML and BODY cannot be used. ...
Posted by venradio on Sun, 20 Feb 2022 07:14:22 +0100
15 minutes to get started vue3 0 (summary)
This article mainly introduces the 15 minute start vue3 0. The example code introduced in this paper is very detailed, which has a certain reference value for everyone's study or work
Vue 3 has not been officially released, but the Alpha version has been released. ***
Shouting that I can't learn anymore, I honestly opened the Vue 3 document w ...
Posted by Tjk on Sun, 20 Feb 2022 01:28:41 +0100
Beginner JAVA project (10, Ada bank-2)
preface
Learning objectives of this project: Mainly through project-oriented learning of JavaScript, vue, cookie s, separation of front and back ends, etc
1, Ada bank-2
Refactor, a bank project, introduces a high-performance data persistence scheme.
Screenshot:
2, Some thoughts after the completion of the project
1. What is web ...
Posted by merylvingien on Sat, 19 Feb 2022 17:57:23 +0100
Using vuecli to quickly create a vue3 project
Tip: the following is the main body of this article for reference only
1, Install the latest Vue cli
Official website: https://cli.vuejs.org/
About older versions Vue CLI package name changed from Vue CLI to @ vue/cli. If you have globally installed the old version of Vue CLI (1. X) Or 2 x) , you need to use NPM uninstall Vue cli - ...
Posted by Dimensional on Sat, 19 Feb 2022 14:41:57 +0100
Vue basic core
Vue core tutorial
Among the three front-end frameworks, Vue is the most popular and React is the most popular;
1, Vue basic knowledge
Vue official website
1) English official website: https://vuejs.org/
2) Chinese official website: https://cn.vuejs.org/
Vue overview
Vue (pronunciation / vju) ː/, Similar to view) is a progressive framewo ...
Posted by szym9341 on Sat, 19 Feb 2022 11:18:06 +0100
vue learning notes 5: Global API of vue systematic learning notes
Reference documents: https://v3.cn.vuejs.org/api/global-api.html#createapp
If you are using a CDN build, the global API can be accessed through the global object Vue, for example:
const { createApp, h, nextTick } = Vue
If you use ES modules, they can be imported directly:
import { createApp, h, nextTick } from 'vue'
Global functio ...
Posted by Evanthes on Sat, 19 Feb 2022 03:16:36 +0100
Problems encountered in Cesium+Vue and Sinicization
Recently, the company has to use three-dimensional maps and can't afford perfect arcgis. It can only embrace open source Cesium. Let's talk about the pits I encountered in Cesium.
cesium+vue dependent package cannot be downloaded
There are a large number of articles on cesium+vue project configuration on the Internet. I won't say more. Here i ...
Posted by Bhaal on Fri, 18 Feb 2022 22:32:47 +0100
Two ways of transmitting parameters in vue routing
Tired of being tossed by vue routing parameters, summarize your experience and dedicate it to the students who use vue routing parameters for the first time. If you don't understand anything, you can leave me a message. This article demonstrates the environment: vue version 2.6 and vue element admin framework
1. Pass parameters through name/pa ...
Posted by NDF on Fri, 18 Feb 2022 19:49:12 +0100