Detailed explanation of vux advanced module splitting

Detailed explanation of vux advanced module splitting If we are a vue project built with scaffolding, there is a store folder in the default directory, and there is only one index.js below. If it is a small project, we don't need to split the module and write it directly in it 2. If it is a slightly larger project, we will help ...

Posted by Mr.x on Fri, 22 Oct 2021 11:51:02 +0200

vue component Foundation

vue componentization Simple understanding What is componentization? The so-called componentization means that the page is divided into multiple components, and the CSS, JS, templates, pictures and other resources that each component depends on are developed and maintained together. Because components are resource independent, components can ...

Posted by John_S on Tue, 19 Oct 2021 07:55:00 +0200

Getting to know Vue: introduction to Vue and some basic Vue commands

VUE instruction review HTML: html+html5 semantic tags (header,footer) css+css3 Animation: transition, animation, flex layout, less Java Script: data type variable operation Mathematical operation Comparison operation Logical operation Process control if switch for while do while function DOM (document object model) BOM (b ...

Posted by merrydown on Mon, 18 Oct 2021 21:47:22 +0200

Building a background management minimalist template with Vue+ElementUI

This article is an explanatory document, which does not teach you to build a background management system from scratch, but based on an actual project, has built a basic framework of the background management system, and teaches you how to quickly develop your own background management system on this basis, so that readers can start vue backgro ...

Posted by melmoth on Fri, 15 Oct 2021 05:50:51 +0200

Vue learning notes - front and back end interaction foundation and Promise

1, Front and rear end interaction Foundation 1. Concept What is front-end and back-end interaction? In fact, it refers to the process that the front end sends a request to the back end through the interface, the back end returns the corresponding data after receiving the request, and the front end makes a corresponding display or jump accordi ...

Posted by alfoxy on Wed, 13 Oct 2021 04:55:40 +0200

Common usage of Vue router

Common usage of Vue router 1. Route redirection Routing redirection refers to forcing the user to jump to address C when accessing address A, so as to display A specific component page. You can easily set the redirection of a route by specifying a new route address through the redirect attribute of the routing rule: 2. Nested routing The ...

Posted by consolestrat on Sat, 09 Oct 2021 13:03:33 +0200

Front end interview - Vue Router

VueRouter create // 1. Define components const RouterA = { template: `<div>This is Router A</div>` } const RouterB = { template: `<div>This is Router B</div>` } // 2. Create a Router instance const router = new VueRouter({ routes: [ { path: '/a', component: RouterA, }, { path: '/b', comp ...

Posted by Adrianphp on Sat, 09 Oct 2021 10:24:11 +0200

From foundation to project (vue2.0 app actual combat)

3.1 details of component use Detail 1: Key: when we package tr into small components, there will be some small problems. <body> <div id="app"> <table> <tbody> <row></row> </tbody> </table> </div> <script> Vu ...

Posted by abx_2112 on Tue, 05 Oct 2021 00:07:39 +0200

Netease cloud music case

Case purpose Learn how to introduce nodeJS server of Netease cloudSimple page layout is realized through some functions of Netease cloud interfaceGradually become familiar with vant component library through mobile end cases 1. Local interface of Netease cloud music Download Netease cloud music node interface project and start it local ...

Posted by davey_b_ on Sun, 03 Oct 2021 23:53:48 +0200

vue3 -- implement form verification

preface Why check the form? What are the hazards of not performing form verification? How to perform form verification? With these questions in mind, let's take a look at how to implement form verification in vue3 today~ 1, Significance of form verification When the value entered by the user in the input box or the required option is ...

Posted by labmixz on Sat, 02 Oct 2021 20:38:29 +0200