Vue basic review 01-(Vue introduction, Vue instruction)
Getting started with Vue
Vue introduction
(1) What is Vue?
Vue is a JavaScript framework
(2) What's Vue for?
Building user pages
(3) What are the characteristics of Vue?
Progressive
Vue has two important features
Two important features of vue framework?
Data driven: without dom operation, Vue will automatically render the page acc ...
Added by The14thGOD on Sat, 12 Feb 2022 14:58:03 +0200
Use three in Vue JS create a 3D conference room model
Chapter II
This chapter mainly creates 3D models, which are divided into three JS built-in basic model and external import model
Basic model
The basic solid model is probably the solid shape of the foundation such as cube, cuboid and ball. First, the floor and wall of our conference room are actually the basic cuboid. For this basic solid ...
Added by baffled_in_UK on Sat, 12 Feb 2022 06:54:42 +0200
Linux 64bit installs mysql, jdk, nodejs, nginx notes
Yesterday, the springboot+vue project was deployed on Linux. It is necessary to make a summary.
mysql installation
View the download address of each version of MySQL: https://downloads.mysql.com/archives/community/
MySQL 5.6.45 download address is https://cdn.mysql.com/archives/mysql-5.6/mysql-5.6.45-linux-glibc2.12-x86_64.tar.gz
Check wh ...
Added by fuii_koh on Sat, 12 Feb 2022 04:57:58 +0200
Simple implementation of lazy loading of component data
VueUse component data lazy loading
1. Understanding
Objective of this section: to understand what component data lazy loading means from a practical point of view Think about two questions
Where are our general data requests initiated?What are the characteristics of life cycle hook function?
At present, ajax requests in each componen ...
Added by idealbrain on Sat, 12 Feb 2022 02:22:12 +0200
Reactivity Fundamentals of Vue3 official document translation
introduction
Suddenly I didn't know what was written in this chapter. I felt the content was a little dry. I took care of the translation and didn't absorb it To sum up, it is mainly about how to combine the responsive object with the template. The responsive object is realized through the proxy object of JavaScript; The objects of response ar ...
Added by dmphotography on Sat, 12 Feb 2022 00:19:22 +0200
Responsive layout
Responsive layout
When I write the project, I use the responsive layout to find the information, harvest and Bug The following articles quoted by other authors. If there is infringement, please contact to delete it!
doubt
Why can't 1rem be 1px
The minimum font size set by the current browser is 12px, so the browser automatically recognizes ...
Added by hansman on Sat, 12 Feb 2022 00:01:52 +0200
Implement a mini Vue
mini-vue
Implement a simple Vue js. To understand the principle of Vue response, mom doesn't have to worry about me not using Vue anymore!
The technology is not yet mature and only a small part of functions are realized-- 2020/08/27
Technical implementation reference Pull hook education "big front-end high salary training camp" ...
Added by dfowler on Fri, 11 Feb 2022 18:05:09 +0200
Getting started with Vue element admin framework: install and run the Vue element admin framework
preface:
(1) Environment configuration: https://mp.csdn.net/editor/html/116790478
Part II: initial contact with Vue element admin framework
This part introduces the process of installing and running the Vue element admin framework, as well as a brief introduction to the Vue element admin framework.
System: MacIDE: Webstorm
(1) Prep ...
Added by ChompGator on Fri, 11 Feb 2022 12:08:54 +0200
web H5 web browser Bluetooth
target
Recently, a project is being developed. The requirements of the project are as follows: On the H5 (based on vue framework) page, call the webluetooth interface through js to read the data transmitted by a Bluetooth device and return to the display.
introduce
background
With the rise of PWA, more and more web services are supporte ...
Added by WendyLady on Fri, 11 Feb 2022 10:50:25 +0200
Vue -- 02. Basic syntax, binding event, two-way binding, component
1, Basic syntax: v-bind, v-if, v-else, v-else-if, v-for
1.1 v-bind binding element
<!DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<!--view Layer, template-->
<div id="app">
...
Added by RosieisSweet on Fri, 11 Feb 2022 10:46:55 +0200