A brief discussion on VUE uni-app conditional coding and page layout

A brief discussion on VUE uni-app conditional coding and page layout

Conditional compilation

Conditional compilation uses special comments as markers. During compilation, the code in the comments is compiled to different platforms based on these special comments.

Writing method: Start with #ifdef or #ifndef plus %PLATFORM% and end with #endif.

#ifdef : if defined only exists on certain platforms

#ifndef :if not defined exists on all platforms except certain ones

%PLATFORM% : Platform name

Page Layout

scss specification, rpx width in iPhone6/7/8 is 750, 2rpx = 1px

<style lang="scss">
	@import "./news.css"; // Load other css files .f1{
		font-size: 50rpx;
		.c3{
			background-color: red;
		}
	}
</style>

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • A brief discussion on VUE uni-app's commonly used APIs
  • A brief discussion on VUE uni-app custom components
  • A brief introduction to VUE uni-app basic components
  • A brief discussion on VUE uni-app template syntax
  • A brief discussion on the VUE uni-app development environment
  • A brief introduction to VUE uni-app core knowledge
  • A brief discussion on the VUE uni-app life cycle

<<:  Linux steps to configure local yum source, configure domestic yum source, and configure epel source

>>:  HTML table markup tutorial (43): VALIGN attribute of the table header

Recommend

React implements a highly adaptive virtual list

Table of contents Before transformation: After tr...

Tomcat first deployment web project process diagram

Put your own web project in the webapps directory...

Solution for Docker container not recognizing fonts such as Songti

Problem background: When using docker to deploy t...

Detailed explanation of the WeChat applet request pre-processing method

question Because some of our pages request data i...

Summary of some common uses of refs in React

Table of contents What are Refs 1. String type Re...

Docker case analysis: Building a Redis service

Table of contents 1 Create mount directories and ...

Two ways to implement square div using CSS

Goal: Create a square whose side length is equal ...

Solution for forgetting the root password of MySQL5.7 under Windows 8.1

【background】 I encountered a very embarrassing th...

Linux sftp command usage

Concept of SFTP sftp is the abbreviation of Secur...

Learn javascript iterator

Table of contents Introduction What does an itera...

Detailed description of HTML table border control

Only show the top border <table frame=above>...