specificationa. The page file follows the vue single file component specification<!-- Template block --> <template> <view class="main"> {{msg}} </view> </template> <!-- Script Block --> <script> export default { data(){ return { msg:'Hello' } } } </script> <!-- Style block --> <style> .main{ background-color:#ccc; } </style> b. Component labels are close to the mini-program specifications<template> <view>hello</view> <text> wang </view> </template> c. Interface capabilities (JS API) are close to WeChat Mini Program specifications//Get location informationuni.getLocation({ type:'wgs84', success:function(res){ console.log('Current location longitude: '+res.longitude); console.log('Current location latitude: '+res.latitude); } }); e. Data binding and event handling use Vue.js specifications<template> <view @click="changeMsg"> {{msg}} </view> </template> <script> export default{ data(){ return { msg:'hello' } }, methods:{ changeMsg(){ this.msg:'world' } } } </scrip> featurea. Conditional compilation#ifdef APP-PLUS Code that only appears on the APP platform#endif #ifndef H5 Except for the H5 platform, the code that exists on other platforms#endif #ifdef H5 || MP-WEIXION Code that exists on the H5 platform or WeChat Mini Program platform#endif b. Nvue development on the App side The uni-app App has a built-in native rendering engine based on Weex, which provides native rendering capabilities. On the App side, if you use the vue page, use webview rendering; if you use the nvue page, use native rendering. c. HTML5+The uni-app App has a built-in HTML5+ engine, allowing js to directly call on rich native capabilities. Some more complex functions can be implemented by directly calling the App's native plug-ins. Can only be used on the App side, not on H5 and mini programs SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: XHTML introductory tutorial: Use of list tags
>>: How to use Docker to package and deploy images locally
In the past, creating a printer-friendly version ...
Pop-up news is common in domestic Internet servic...
The docker image id is unique and can physically ...
Whether it is the background image or the text siz...
Preface With the development of big front-end, UI...
#Case: Query employee salary levels SELECT salary...
Precondition: content="width=750" <m...
Install vsftpd $ sudo apt-get install vsftpd -y S...
This article shares the specific code of JavaScri...
Prerequisites A cloud server (centOS of Alibaba C...
To learn content-type, you must first know what i...
Through the brief introduction in the previous tw...
Flash file formats: .FLV and .SWF There are two ex...
Table of contents Project Directory Dockerfile Fi...
mysql-5.7.20-winx64.zipInstallation package witho...