`vue3`+`ts`+`setup`Grammatical sugar implements an infinitely nested`tree`component

Today, we use vue3+ts+setup grammar sugar to implement an infinitely nested tree component. First, we will see the effect of the implementation. The style has not been much modified. This article is very basic, and I am mainly new to vue3. Recently, I have also started to practice using vue3 to implement a set of vue2 components when the compa ...

Posted by n-gen on Sat, 05 Mar 2022 19:57:50 +0100

[introduction to JSP] only know HTML but don't know JSP?

preface Today, let's continue to summarize and learn the relevant knowledge of JSP. In the last article, we learned the basic introduction of Servlet. If you are still interested in Servlet, I suggest you go to the previous blog first and then come back. Portal: [introduction to Servlet] an article is familiar to you that you have never heard ...

Posted by mckintosh18 on Sat, 05 Mar 2022 19:54:00 +0100

vue front-end and back-end separate back-end management system (rights management, login), front-end scaffolding. Docking backend is a backend interface based on SpringSecurity

Article Directory Foreword (very important)1. Summary of concepts and technologies (key points must be understood) 1. vue2. vue-admin-template template file parsing3. Asynchronous correlation, front-end and back-end interaction4. Navigation Guard5. Routing Resolution 2. Single sign-on implementation 1. Backend interface and response resu ...

Posted by empnorton on Sat, 05 Mar 2022 18:26:09 +0100

vue3 most complete routing tutorial

Introduction to routing. I've released the basic use of vue2 before. You can go there if you want to know vue2 routing tutorial Let's start routing Know Vue router At present, the three popular front-end frameworks have their own routing implementation: ngRouter of AngularReactRouter of ReactVue router of Vue Vue router is based on Routing ...

Posted by Gulsaes on Sat, 05 Mar 2022 18:03:08 +0100

vue3. New features of version 2

Vue version 3.2 includes many important new features and performance improvements, but does not include major changes. Vue 3.2 original link The main updates are as follows: 1. New single file component function < script setup > is a compile time syntax sugar, which can greatly improve work efficiency when using Composition API in S ...

Posted by interactive on Sat, 05 Mar 2022 17:43:06 +0100

Learning HTML for a week

Paragraph label <p>paragraph</p> Exclusive row Title label <h1>Title label</h1> <h2>Title label</h2> <h3>Title label</h3> <h4>Title label</h4> <h5>Title label</h5> <h6>Title label</h6> Common ground: both are bold and block elements Differences: the font s ...

Posted by quikone on Sat, 05 Mar 2022 14:19:16 +0100

Based on three JS 3D resume production

3D resume Github Project Demo Three.js, Vue+Element UI, ES6 preface Recently made a 3D resume. Let's record the production process. Sketch constructionDownload modelMaking mapsWrite codeWrite it at the back Construction sketch My idea is to build a three-dimensional study, which includes two walls and a desk, similar to the follow ...

Posted by new_to_php2004 on Fri, 04 Mar 2022 22:11:08 +0100

Card assembly packaging

1. Implementation process of component library 1.1 component: Reusable Vue instances 1.2 Vue component library: a third-party UI Library Based on vue and independent of business, such as element and ant design 2. Implement your own component library 2.1 scaffold generation vue project 2.2 revised project catalogue 2.2.1 m ...

Posted by Brakanjan on Fri, 04 Mar 2022 20:12:15 +0100

H5 of front-end learning

1, HTML5 Adjust the size of the video and select the type of video (type=video/mp4/webm/ogg)Pause and pause methods Element supports multiple elements Element can link different video files. The browser will use the first recognizable format <video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> & ...

Posted by johnsiilver on Fri, 04 Mar 2022 13:40:45 +0100

HTML basic structure, tag, list

Relationship between HTML, CSS and JS HTML is the skeleton of web pages, which is mainly responsible for the structure of web pagesCSS provides styles for web pages to beautify and decorate web pagesJavaScript is a scripting language used to control DOM elements, which is mainly used for DOM processing of front-end pages Mainstream browse ...

Posted by srdva59 on Thu, 03 Mar 2022 17:57:18 +0100