├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── collaborator_issue.md │ ├── committee_issue.md │ ├── feature_request.md │ └── triage_issue.md ├── PULL_REQUEST_TEMPLATE │ ├── collaborator_pull_request_template.md │ ├── committee_pull_request_template.md │ ├── pull_request_template.md │ └── triager_pull_request_template.md └── workflows │ ├── deploy-github.yml │ ├── deploy-preview.yml │ ├── deploy-tcb.yml │ ├── nodejs.yml │ ├── notion-update.yml │ └── sync-components-types.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .prettierrc ├── .stylelintignore ├── .stylelintrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md ├── babel.config.js ├── blog ├── 2018-06-07-Taro.md ├── 2018-06-25-the-birth-of-taro.md ├── 2018-08-24-the-birth-of-taro-ui.md ├── 2018-09-11-taro-in-jd.md ├── 2018-09-18-taro-1-0-0.md ├── 2018-11-05-taro-1-1.md ├── 2018-12-18-taro-1-2.md ├── 2019-02-25-taro-ui-2.0.md ├── 2019-02-28-taro-h5-optimize.md ├── 2019-03-12-mini-program-framework-full-review.md ├── 2019-06-13-taro-1-3.md ├── 2019-06-21-taro-ext-club.md ├── 2019-07-10-taro-hooks.md ├── 2019-09-25-taro-flex.md ├── 2019-10-24-taro-open.md ├── 2019-12-03-jingxi-index.md ├── 2020-01-02-gmtc.md ├── 2020-01-08-taro-2-0.md ├── 2020-02-13-taro-next-alpha.md ├── 2020-04-27-taro-build-jd.md ├── 2020-04-27-taro-vs-jd.md ├── 2020-05-26-taro-3-rc.md ├── 2020-07-01-taro-3-0-0.md ├── 2020-09-01-taro-versions.md ├── 2020-12-02-taro-3-2-0-cannary-1.md ├── 2020-12-15-taro-3-1-beta.md ├── 2020-4-13-taro-components.md ├── 2021-02-08-taro-jxpp.md ├── 2021-03-10-taro-3-1-lts.md ├── 2021-04-08-taro-3.2.md ├── 2021-04-22-Taro-3.3-alpha.md ├── 2021-08-13-Taro-3.3.md ├── 2021-10-14-Taro-React-Native-update.md ├── 2021-11-24-Taro-3.4-beta.md ├── 2021-12-08-Taro-3.5-canary.md ├── 2022-01-19-how-to-join-Taro.md ├── 2022-01-20-Taro-3.4.md ├── 2022-03-24-Taro-feature.md ├── 2022-03-29-Taro-community.md ├── 2022-05-19-Taro-3.5-beta.md ├── 2022-07-26-Taro-3.5.md ├── 2022-11-18-Taro-3.6-canary.md ├── 2023-02-01-Taro-3.6.md ├── 2023-03-29-D2_17.md ├── 2024-01-18-harmony-hybrid.md ├── 2024-09-11-harmony-high-performance.md ├── 2024-09-29-harmony-react-on-arkts.md ├── 2024-10-16-harmony-w3c-css.md ├── 2024-11-01-harmony-native-events.md ├── 2024-11-14-harmony-image.md ├── 2024-11-22-harmony-virtual-list.md ├── 2025-04-23-taro-on-harmony.md ├── 2025-05-16-taro-harmony-c-api.md └── authors.yml ├── commitlint.config.js ├── docs ├── CONTRIBUTING-GUIDE.md ├── CONTRIBUTING.md ├── GETTING-STARTED.md ├── README.mdx ├── apis │ ├── General.md │ ├── about │ │ ├── desc.md │ │ ├── env.md │ │ ├── events.md │ │ └── tarocomponent.md │ ├── ad │ │ ├── InterstitialAd.md │ │ ├── RewardedVideoAd.md │ │ ├── createInterstitialAd.md │ │ └── createRewardedVideoAd.md │ ├── ai │ │ ├── face │ │ │ ├── faceDetect.md │ │ │ ├── initFaceDetect.md │ │ │ └── stopFaceDetect.md │ │ ├── inference │ │ │ ├── InferenceSession.md │ │ │ ├── createInferenceSession.md │ │ │ └── getInferenceEnvInfo.md │ │ └── visionkit │ │ │ ├── VKBodyAnchor.md │ │ │ ├── VKCamera.md │ │ │ ├── VKDepthAnchor.md │ │ │ ├── VKFaceAnchor.md │ │ │ ├── VKFrame.md │ │ │ ├── VKHandAnchor.md │ │ │ ├── VKMarkerAnchor.md │ │ │ ├── VKOCRAnchor.md │ │ │ ├── VKOSDAnchor.md │ │ │ ├── VKPlaneAnchor.md │ │ │ ├── VKSession.md │ │ │ ├── createVKSession.md │ │ │ └── isVKSupport.md │ ├── alipay │ │ ├── getOpenUserInfo.md │ │ └── tradePay.md │ ├── base │ │ ├── arrayBufferToBase64.md │ │ ├── base64ToArrayBuffer.md │ │ ├── canIUse.md │ │ ├── canIUseWebp.md │ │ ├── crypto │ │ │ ├── UserCryptoManager.md │ │ │ ├── getRandomValues.md │ │ │ └── getUserCryptoManager.md │ │ ├── debug │ │ │ ├── LogManager.md │ │ │ ├── RealtimeLogManager.md │ │ │ ├── RealtimeTagLogManager.md │ │ │ ├── console.md │ │ │ ├── getLogManager.md │ │ │ ├── getRealtimeLogManager.md │ │ │ └── setEnableDebug.md │ │ ├── env.md │ │ ├── env │ │ │ └── env.md │ │ ├── performance │ │ │ ├── EntryList.md │ │ │ ├── Performance.md │ │ │ ├── PerformanceEntry.md │ │ │ ├── PerformanceObserver.md │ │ │ ├── getPerformance.md │ │ │ ├── preloadAssets.md │ │ │ ├── preloadSkylineView.md │ │ │ ├── preloadWebview.md │ │ │ └── reportPerformance.md │ │ ├── preload.md │ │ ├── system │ │ │ ├── getAppAuthorizeSetting.md │ │ │ ├── getAppBaseInfo.md │ │ │ ├── getDeviceInfo.md │ │ │ ├── getRendererUserAgent.md │ │ │ ├── getSkylineInfo.md │ │ │ ├── getSkylineInfoSync.md │ │ │ ├── getSystemInfo.md │ │ │ ├── getSystemInfoAsync.md │ │ │ ├── getSystemInfoSync.md │ │ │ ├── getSystemSetting.md │ │ │ ├── getWindowInfo.md │ │ │ ├── openAppAuthorizeSetting.md │ │ │ └── openSystemBluetoothSetting.md │ │ ├── update │ │ │ ├── UpdateManager.md │ │ │ ├── getUpdateManager.md │ │ │ └── updateWeChatApp.md │ │ └── weapp │ │ │ ├── app-event │ │ │ ├── offAppHide.md │ │ │ ├── offAppShow.md │ │ │ ├── offAudioInterruptionBegin.md │ │ │ ├── offAudioInterruptionEnd.md │ │ │ ├── offError.md │ │ │ ├── offPageNotFound.md │ │ │ ├── offThemeChange.md │ │ │ ├── offUnhandledRejection.md │ │ │ ├── onAppHide.md │ │ │ ├── onAppShow.md │ │ │ ├── onAudioInterruptionBegin.md │ │ │ ├── onAudioInterruptionEnd.md │ │ │ ├── onError.md │ │ │ ├── onPageNotFound.md │ │ │ ├── onThemeChange.md │ │ │ └── onUnhandledRejection.md │ │ │ └── life-cycle │ │ │ ├── getEnterOptionsSync.md │ │ │ └── getLaunchOptionsSync.md │ ├── canvas │ │ ├── Canvas.md │ │ ├── CanvasContext.md │ │ ├── CanvasGradient.md │ │ ├── Color.md │ │ ├── Image.md │ │ ├── ImageData.md │ │ ├── OffscreenCanvas.md │ │ ├── Path2D.md │ │ ├── RenderingContext.md │ │ ├── canvasGetImageData.md │ │ ├── canvasPutImageData.md │ │ ├── canvasToTempFilePath.md │ │ ├── createCanvasContext.md │ │ ├── createContext.md │ │ ├── createOffscreenCanvas.md │ │ ├── drawCanvas.md │ │ └── toTempFilePath.md │ ├── cloud │ │ ├── DB.md │ │ └── cloud.md │ ├── data-analysis │ │ ├── getCommonConfig.md │ │ ├── getExptInfoSync.md │ │ ├── reportAnalytics.md │ │ ├── reportEvent.md │ │ └── reportMonitor.md │ ├── device │ │ ├── accelerometer │ │ │ ├── offAccelerometerChange.md │ │ │ ├── onAccelerometerChange.md │ │ │ ├── startAccelerometer.md │ │ │ └── stopAccelerometer.md │ │ ├── accessibility │ │ │ └── checkIsOpenAccessibility.md │ │ ├── battery │ │ │ ├── getBatteryInfo.md │ │ │ └── getBatteryInfoSync.md │ │ ├── bluetooth-ble │ │ │ ├── closeBLEConnection.md │ │ │ ├── createBLEConnection.md │ │ │ ├── getBLEDeviceCharacteristics.md │ │ │ ├── getBLEDeviceRSSI.md │ │ │ ├── getBLEDeviceServices.md │ │ │ ├── getBLEMTU.md │ │ │ ├── notifyBLECharacteristicValueChange.md │ │ │ ├── offBLECharacteristicValueChange.md │ │ │ ├── offBLEConnectionStateChange.md │ │ │ ├── offBLEMTUChange.md │ │ │ ├── onBLECharacteristicValueChange.md │ │ │ ├── onBLEConnectionStateChange.md │ │ │ ├── onBLEMTUChange.md │ │ │ ├── readBLECharacteristicValue.md │ │ │ ├── setBLEMTU.md │ │ │ └── writeBLECharacteristicValue.md │ │ ├── bluetooth-peripheral │ │ │ ├── BLEPeripheralServer.md │ │ │ ├── createBLEPeripheralServer.md │ │ │ ├── offBLEPeripheralConnectionStateChanged.md │ │ │ └── onBLEPeripheralConnectionStateChanged.md │ │ ├── bluetooth │ │ │ ├── closeBluetoothAdapter.md │ │ │ ├── getBluetoothAdapterState.md │ │ │ ├── getBluetoothDevices.md │ │ │ ├── getConnectedBluetoothDevices.md │ │ │ ├── isBluetoothDevicePaired.md │ │ │ ├── makeBluetoothPair.md │ │ │ ├── offBluetoothAdapterStateChange.md │ │ │ ├── offBluetoothDeviceFound.md │ │ │ ├── onBluetoothAdapterStateChange.md │ │ │ ├── onBluetoothDeviceFound.md │ │ │ ├── openBluetoothAdapter.md │ │ │ ├── startBluetoothDevicesDiscovery.md │ │ │ └── stopBluetoothDevicesDiscovery.md │ │ ├── calendar │ │ │ ├── addPhoneCalendar.md │ │ │ └── addPhoneRepeatCalendar.md │ │ ├── clipboard │ │ │ ├── getClipboardData.md │ │ │ └── setClipboardData.md │ │ ├── compass │ │ │ ├── offCompassChange.md │ │ │ ├── onCompassChange.md │ │ │ ├── startCompass.md │ │ │ └── stopCompass.md │ │ ├── contact │ │ │ ├── addPhoneContact.md │ │ │ └── chooseContact.md │ │ ├── gyroscope │ │ │ ├── offGyroscopeChange.md │ │ │ ├── onGyroscopeChange.md │ │ │ ├── startGyroscope.md │ │ │ └── stopGyroscope.md │ │ ├── iBeacon │ │ │ ├── IBeaconInfo.md │ │ │ ├── getBeacons.md │ │ │ ├── offBeaconServiceChange.md │ │ │ ├── offBeaconUpdate.md │ │ │ ├── onBeaconServiceChange.md │ │ │ ├── onBeaconUpdate.md │ │ │ ├── startBeaconDiscovery.md │ │ │ └── stopBeaconDiscovery.md │ │ ├── keyboard │ │ │ ├── getSelectedTextRange.md │ │ │ ├── hideKeyboard.md │ │ │ ├── offKeyboardHeightChange.md │ │ │ └── onKeyboardHeightChange.md │ │ ├── memory │ │ │ ├── offMemoryWarning.md │ │ │ └── onMemoryWarning.md │ │ ├── motion │ │ │ ├── offDeviceMotionChange.md │ │ │ ├── onDeviceMotionChange.md │ │ │ ├── startDeviceMotionListening.md │ │ │ └── stopDeviceMotionListening.md │ │ ├── network │ │ │ ├── getLocalIPAddress.md │ │ │ ├── getNetworkType.md │ │ │ ├── offNetworkStatusChange.md │ │ │ ├── offNetworkWeakChange.md │ │ │ ├── onNetworkStatusChange.md │ │ │ └── onNetworkWeakChange.md │ │ ├── nfc │ │ │ ├── IsoDep.md │ │ │ ├── MifareClassic.md │ │ │ ├── MifareUltralight.md │ │ │ ├── NFCAdapter.md │ │ │ ├── Ndef.md │ │ │ ├── NfcA.md │ │ │ ├── NfcB.md │ │ │ ├── NfcF.md │ │ │ ├── NfcV.md │ │ │ ├── getHCEState.md │ │ │ ├── getNFCAdapter.md │ │ │ ├── offHCEMessage.md │ │ │ ├── onHCEMessage.md │ │ │ ├── sendHCEMessage.md │ │ │ ├── startHCE.md │ │ │ └── stopHCE.md │ │ ├── phone │ │ │ └── makePhoneCall.md │ │ ├── scan │ │ │ └── scanCode.md │ │ ├── screen │ │ │ ├── getScreenBrightness.md │ │ │ ├── getScreenRecordingState.md │ │ │ ├── offScreenRecordingStateChanged.md │ │ │ ├── offUserCaptureScreen.md │ │ │ ├── onScreenRecordingStateChanged.md │ │ │ ├── onUserCaptureScreen.md │ │ │ ├── setKeepScreenOn.md │ │ │ ├── setScreenBrightness.md │ │ │ └── setVisualEffectOnCapture.md │ │ ├── sms │ │ │ └── sendSms.md │ │ ├── vibrate │ │ │ ├── vibrateLong.md │ │ │ └── vibrateShort.md │ │ └── wifi │ │ │ ├── WifiInfo.md │ │ │ ├── connectWifi.md │ │ │ ├── getConnectedWifi.md │ │ │ ├── getWifiList.md │ │ │ ├── offGetWifiList.md │ │ │ ├── offWifiConnected.md │ │ │ ├── offWifiConnectedWithPartialInfo.md │ │ │ ├── onGetWifiList.md │ │ │ ├── onWifiConnected.md │ │ │ ├── onWifiConnectedWithPartialInfo.md │ │ │ ├── setWifiList.md │ │ │ ├── startWifi.md │ │ │ └── stopWifi.md │ ├── ext │ │ ├── getExtConfig.md │ │ └── getExtConfigSync.md │ ├── files │ │ ├── FileSystemManager.md │ │ ├── ReadResult.md │ │ ├── Stats.md │ │ ├── WriteResult.md │ │ ├── getFileInfo.md │ │ ├── getFileSystemManager.md │ │ ├── getSavedFileInfo.md │ │ ├── getSavedFileList.md │ │ ├── openDocument.md │ │ ├── removeSavedFile.md │ │ ├── saveFile.md │ │ └── saveFileToDisk.md │ ├── framework │ │ ├── App.md │ │ ├── Page.md │ │ ├── getApp.md │ │ └── getCurrentPages.md │ ├── index.md │ ├── location │ │ ├── chooseLocation.md │ │ ├── choosePoi.md │ │ ├── getFuzzyLocation.md │ │ ├── getLocation.md │ │ ├── offLocationChange.md │ │ ├── offLocationChangeError.md │ │ ├── onLocationChange.md │ │ ├── onLocationChangeError.md │ │ ├── openLocation.md │ │ ├── startLocationUpdate.md │ │ ├── startLocationUpdateBackground.md │ │ └── stopLocationUpdate.md │ ├── media │ │ ├── audio │ │ │ ├── AudioBuffer.md │ │ │ ├── AudioContext.md │ │ │ ├── InnerAudioContext.md │ │ │ ├── MediaAudioPlayer.md │ │ │ ├── WebAudioContext.md │ │ │ ├── WebAudioContextNode.md │ │ │ ├── createAudioContext.md │ │ │ ├── createInnerAudioContext.md │ │ │ ├── createMediaAudioPlayer.md │ │ │ ├── createWebAudioContext.md │ │ │ ├── getAvailableAudioSources.md │ │ │ ├── pauseVoice.md │ │ │ ├── playVoice.md │ │ │ ├── setInnerAudioOption.md │ │ │ └── stopVoice.md │ │ ├── background-audio │ │ │ ├── BackgroundAudioManager.md │ │ │ ├── getBackgroundAudioManager.md │ │ │ ├── getBackgroundAudioPlayerState.md │ │ │ ├── onBackgroundAudioPause.md │ │ │ ├── onBackgroundAudioPlay.md │ │ │ ├── onBackgroundAudioStop.md │ │ │ ├── pauseBackgroundAudio.md │ │ │ ├── playBackgroundAudio.md │ │ │ ├── seekBackgroundAudio.md │ │ │ └── stopBackgroundAudio.md │ │ ├── camera │ │ │ ├── CameraContext.md │ │ │ ├── CameraFrameListener.md │ │ │ └── createCameraContext.md │ │ ├── editor │ │ │ └── EditorContext.md │ │ ├── image │ │ │ ├── chooseImage.md │ │ │ ├── chooseMessageFile.md │ │ │ ├── compressImage.md │ │ │ ├── cropImage.md │ │ │ ├── editImage.md │ │ │ ├── getImageInfo.md │ │ │ ├── previewImage.md │ │ │ ├── previewMedia.md │ │ │ └── saveImageToPhotosAlbum.md │ │ ├── live │ │ │ ├── LivePlayerContext.md │ │ │ ├── LivePusherContext.md │ │ │ ├── createLivePlayerContext.md │ │ │ └── createLivePusherContext.md │ │ ├── map │ │ │ ├── MapContext.md │ │ │ └── createMapContext.md │ │ ├── media-recorder │ │ │ ├── MediaRecorder.md │ │ │ └── createMediaRecorder.md │ │ ├── recorder │ │ │ ├── RecorderManager.md │ │ │ ├── getRecorderManager.md │ │ │ ├── startRecord.md │ │ │ └── stopRecord.md │ │ ├── video-decoder │ │ │ ├── VideoDecoder.md │ │ │ └── createVideoDecoder.md │ │ ├── video-processing │ │ │ ├── MediaContainer.md │ │ │ ├── MediaTrack.md │ │ │ └── createMediaContainer.md │ │ ├── video │ │ │ ├── VideoContext.md │ │ │ ├── chooseMedia.md │ │ │ ├── chooseVideo.md │ │ │ ├── compressVideo.md │ │ │ ├── createVideoContext.md │ │ │ ├── getVideoInfo.md │ │ │ ├── openVideoEditor.md │ │ │ └── saveVideoToPhotosAlbum.md │ │ └── voip │ │ │ ├── exitVoIPChat.md │ │ │ ├── join1v1Chat.md │ │ │ ├── joinVoIPChat.md │ │ │ ├── offVoIPChatInterrupted.md │ │ │ ├── offVoIPChatMembersChanged.md │ │ │ ├── offVoIPChatSpeakersChanged.md │ │ │ ├── offVoIPChatStateChanged.md │ │ │ ├── offVoIPVideoMembersChanged.md │ │ │ ├── onVoIPChatInterrupted.md │ │ │ ├── onVoIPChatMembersChanged.md │ │ │ ├── onVoIPChatSpeakersChanged.md │ │ │ ├── onVoIPChatStateChanged.md │ │ │ ├── onVoIPVideoMembersChanged.md │ │ │ ├── setEnable1v1Chat.md │ │ │ ├── subscribeVoIPVideoMembers.md │ │ │ └── updateVoIPChatMuteConfig.md │ ├── navigate │ │ ├── exitMiniProgram.md │ │ ├── navigateBackMiniProgram.md │ │ ├── navigateToMiniProgram.md │ │ ├── openBusinessView.md │ │ └── openEmbeddedMiniProgram.md │ ├── network │ │ ├── download │ │ │ ├── DownloadTask.md │ │ │ └── downloadFile.md │ │ ├── mdns │ │ │ ├── offLocalServiceDiscoveryStop.md │ │ │ ├── offLocalServiceFound.md │ │ │ ├── offLocalServiceLost.md │ │ │ ├── offLocalServiceResolveFail.md │ │ │ ├── onLocalServiceDiscoveryStop.md │ │ │ ├── onLocalServiceFound.md │ │ │ ├── onLocalServiceLost.md │ │ │ ├── onLocalServiceResolveFail.md │ │ │ ├── startLocalServiceDiscovery.md │ │ │ └── stopLocalServiceDiscovery.md │ │ ├── request │ │ │ ├── RequestTask.md │ │ │ ├── addInterceptor.md │ │ │ ├── cleanInterceptors.md │ │ │ └── request.md │ │ ├── tcp │ │ │ ├── TCPSocket.md │ │ │ └── createTCPSocket.md │ │ ├── udp │ │ │ ├── UDPSocket.md │ │ │ └── createUDPSocket.md │ │ ├── upload │ │ │ ├── UploadTask.md │ │ │ └── uploadFile.md │ │ └── websocket │ │ │ ├── SocketTask.md │ │ │ ├── closeSocket.md │ │ │ ├── connectSocket.md │ │ │ ├── onSocketClose.md │ │ │ ├── onSocketError.md │ │ │ ├── onSocketMessage.md │ │ │ ├── onSocketOpen.md │ │ │ └── sendSocketMessage.md │ ├── open-api │ │ ├── account │ │ │ └── getAccountInfoSync.md │ │ ├── address │ │ │ └── chooseAddress.md │ │ ├── authorize │ │ │ ├── authorize.md │ │ │ └── authorizeForMiniProgram.md │ │ ├── card │ │ │ ├── addCard.md │ │ │ ├── card.md │ │ │ └── openCard.md │ │ ├── channels │ │ │ ├── getChannelsLiveInfo.md │ │ │ ├── getChannelsLiveNoticeInfo.md │ │ │ ├── getChannelsShareKey.md │ │ │ ├── openChannelsActivity.md │ │ │ ├── openChannelsEvent.md │ │ │ ├── openChannelsLive.md │ │ │ ├── openChannelsUserProfile.md │ │ │ └── reserveChannelsLive.md │ │ ├── customer-service │ │ │ └── openCustomerServiceChat.md │ │ ├── device-voip │ │ │ ├── getDeviceVoIPList.md │ │ │ └── requestDeviceVoIP.md │ │ ├── facial │ │ │ ├── checkIsSupportFacialRecognition.md │ │ │ ├── startFacialRecognitionVerify.md │ │ │ └── startFacialRecognitionVerifyAndUploadVideo.md │ │ ├── favorites │ │ │ ├── addFileToFavorites.md │ │ │ └── addVideoToFavorites.md │ │ ├── group │ │ │ └── getGroupEnterInfo.md │ │ ├── invoice │ │ │ ├── chooseInvoice.md │ │ │ └── chooseInvoiceTitle.md │ │ ├── license-plate │ │ │ └── chooseLicensePlate.md │ │ ├── login │ │ │ ├── checkSession.md │ │ │ ├── login.md │ │ │ └── pluginLogin.md │ │ ├── my-miniprogram │ │ │ └── checkIsAddedToMyMiniProgram.md │ │ ├── privacy │ │ │ ├── getPrivacySetting.md │ │ │ ├── onNeedPrivacyAuthorization.md │ │ │ ├── openPrivacyContract.md │ │ │ └── requirePrivacyAuthorize.md │ │ ├── redpackage │ │ │ └── showRedPackage.md │ │ ├── settings │ │ │ ├── AuthSetting.md │ │ │ ├── SubscriptionsSetting.md │ │ │ ├── getSetting.md │ │ │ └── openSetting.md │ │ ├── soter │ │ │ ├── checkIsSoterEnrolledInDevice.md │ │ │ ├── checkIsSupportSoterAuthentication.md │ │ │ └── startSoterAuthentication.md │ │ ├── sticker │ │ │ ├── openSingleStickerView.md │ │ │ ├── openStickerIPView.md │ │ │ └── openStickerSetView.md │ │ ├── subscribe-message │ │ │ ├── requestSubscribeDeviceMessage.md │ │ │ ├── requestSubscribeMessage.md │ │ │ ├── subscribeService.md │ │ │ └── unsubscribeMessage.md │ │ ├── user-info │ │ │ ├── UserInfo.md │ │ │ ├── getUserInfo.md │ │ │ └── getUserProfile.md │ │ └── werun │ │ │ ├── getWeRunData.md │ │ │ └── shareToWeRun.md │ ├── payment │ │ ├── faceVerifyForPay.md │ │ ├── requestOrderPayment.md │ │ └── requestPayment.md │ ├── qq │ │ ├── addRecentColorSign.md │ │ ├── applyAddToMyApps.md │ │ ├── getGuildInfo.md │ │ ├── getQQRunData.md │ │ ├── isAddedToMyApps.md │ │ ├── openQzonePublish.md │ │ ├── setCustomDress.md │ │ ├── setOfficialDress.md │ │ └── updateQQApp.md │ ├── route │ │ ├── EventChannel.md │ │ ├── navigateBack.md │ │ ├── navigateTo.md │ │ ├── reLaunch.md │ │ ├── redirectTo.md │ │ ├── router.md │ │ └── switchTab.md │ ├── share │ │ ├── authPrivateMessage.md │ │ ├── getShareInfo.md │ │ ├── hideShareMenu.md │ │ ├── offCopyUrl.md │ │ ├── onCopyUrl.md │ │ ├── shareFileMessage.md │ │ ├── shareVideoMessage.md │ │ ├── showShareImageMenu.md │ │ ├── showShareMenu.md │ │ └── updateShareMenu.md │ ├── skyline │ │ ├── DraggableSheetContext.md │ │ ├── Snapshot.md │ │ └── worklet.md │ ├── storage │ │ ├── background-fetch │ │ │ ├── getBackgroundFetchData.md │ │ │ ├── getBackgroundFetchToken.md │ │ │ ├── onBackgroundFetchData.md │ │ │ └── setBackgroundFetchToken.md │ │ ├── batchGetStorage.md │ │ ├── batchGetStorageSync.md │ │ ├── batchSetStorage.md │ │ ├── batchSetStorageSync.md │ │ ├── cache-manager │ │ │ ├── CacheManager.md │ │ │ └── createCacheManager.md │ │ ├── clearStorage.md │ │ ├── clearStorageSync.md │ │ ├── createBufferURL.md │ │ ├── getStorage.md │ │ ├── getStorageInfo.md │ │ ├── getStorageInfoSync.md │ │ ├── getStorageSync.md │ │ ├── removeStorage.md │ │ ├── removeStorageSync.md │ │ ├── revokeBufferURL.md │ │ ├── setStorage.md │ │ └── setStorageSync.md │ ├── swan │ │ ├── bookshelf │ │ │ ├── deleteBookshelf.md │ │ │ ├── insertBookshelf.md │ │ │ ├── navigateToBookshelf.md │ │ │ ├── queryBookshelf.md │ │ │ └── updateBookshelfReadTime.md │ │ ├── download-package │ │ │ ├── downloadPackage.md │ │ │ ├── downloadPackages.md │ │ │ └── loadSubPackage.md │ │ ├── getFavorStatus.md │ │ ├── getSystemRiskInfo.md │ │ ├── getTopStatus.md │ │ ├── openBdboxWebview.md │ │ ├── pay │ │ │ ├── getOptimalPriceInfo.md │ │ │ └── requestPolymerPayment.md │ │ ├── setDocumentTitle.md │ │ ├── setMetaDescription.md │ │ ├── setMetaKeywords.md │ │ └── setPageInfo.md │ ├── taro.extend │ │ ├── eventCenter.md │ │ ├── getAppInfo.md │ │ ├── getCurrentInstance.md │ │ ├── getEnv.md │ │ ├── getEnvInfoSync.md │ │ ├── getRenderer.md │ │ ├── getTabBar.md │ │ ├── initPxTransform.md │ │ ├── interceptorify.md │ │ ├── pxTransform.md │ │ ├── requirePlugin.md │ │ └── setGlobalDataPlugin.md │ ├── taro.hooks │ │ ├── useAddToFavorites.md │ │ ├── useDidHide.md │ │ ├── useDidShow.md │ │ ├── useError.md │ │ ├── useLaunch.md │ │ ├── useLoad.md │ │ ├── useOptionMenuClick.md │ │ ├── usePageNotFound.md │ │ ├── usePageScroll.md │ │ ├── usePullDownRefresh.md │ │ ├── usePullIntercept.md │ │ ├── useReachBottom.md │ │ ├── useReady.md │ │ ├── useResize.md │ │ ├── useRouter.md │ │ ├── useSaveExitState.md │ │ ├── useShareAppMessage.md │ │ ├── useShareTimeline.md │ │ ├── useTabItemTap.md │ │ ├── useTitleClick.md │ │ ├── useUnhandledRejection.md │ │ └── useUnload.md │ ├── ui │ │ ├── animation │ │ │ ├── Animation.md │ │ │ └── createAnimation.md │ │ ├── background │ │ │ ├── setBackgroundColor.md │ │ │ └── setBackgroundTextStyle.md │ │ ├── custom-component │ │ │ └── nextTick.md │ │ ├── fonts │ │ │ └── loadFontFace.md │ │ ├── interaction │ │ │ ├── disableAlertBeforeUnload.md │ │ │ ├── enableAlertBeforeUnload.md │ │ │ ├── hideLoading.md │ │ │ ├── hideToast.md │ │ │ ├── showActionSheet.md │ │ │ ├── showLoading.md │ │ │ ├── showModal.md │ │ │ └── showToast.md │ │ ├── menu │ │ │ └── getMenuButtonBoundingClientRect.md │ │ ├── navigation-bar │ │ │ ├── hideHomeButton.md │ │ │ ├── hideNavigationBarLoading.md │ │ │ ├── setNavigationBarColor.md │ │ │ ├── setNavigationBarTitle.md │ │ │ └── showNavigationBarLoading.md │ │ ├── pull-down-refresh │ │ │ ├── startPullDownRefresh.md │ │ │ └── stopPullDownRefresh.md │ │ ├── scroll │ │ │ ├── ScrollViewContext.md │ │ │ └── pageScrollTo.md │ │ ├── sticky │ │ │ └── setTopBarText.md │ │ ├── tab-bar │ │ │ ├── hideTabBar.md │ │ │ ├── hideTabBarRedDot.md │ │ │ ├── removeTabBarBadge.md │ │ │ ├── setTabBarBadge.md │ │ │ ├── setTabBarItem.md │ │ │ ├── setTabBarStyle.md │ │ │ ├── showTabBar.md │ │ │ └── showTabBarRedDot.md │ │ └── window │ │ │ ├── checkIsPictureInPictureActive.md │ │ │ ├── offWindowResize.md │ │ │ ├── onWindowResize.md │ │ │ └── setWindowSize.md │ ├── worker │ │ ├── Worker.md │ │ └── createWorker.md │ └── wxml │ │ ├── IntersectionObserver.md │ │ ├── MediaQueryObserver.md │ │ ├── NodesRef.md │ │ ├── SelectorQuery.md │ │ ├── createIntersectionObserver.md │ │ ├── createMediaQueryObserver.md │ │ └── createSelectorQuery.md ├── app-config.md ├── babel-config.md ├── best-practice.md ├── children.md ├── cli.md ├── codebase-overview.md ├── come-from-miniapp.mdx ├── communicate.mdx ├── compile-optimized.mdx ├── complier-mode.mdx ├── component-style.md ├── components-desc.mdx ├── components │ ├── base │ │ ├── icon.md │ │ ├── progress.md │ │ ├── rich-text.md │ │ └── text.md │ ├── canvas │ │ └── canvas.md │ ├── common.md │ ├── event.md │ ├── forms │ │ ├── button.md │ │ ├── checkbox-group.md │ │ ├── checkbox.md │ │ ├── editor.md │ │ ├── form.md │ │ ├── input.md │ │ ├── keyboard-accessory.md │ │ ├── label.md │ │ ├── picker-view-column.md │ │ ├── picker-view.md │ │ ├── picker.md │ │ ├── radio-group.md │ │ ├── radio.md │ │ ├── slider.md │ │ ├── switch.md │ │ └── textarea.md │ ├── gesture │ │ ├── double-tap-gesture-handler.md │ │ ├── force-press-gesture-handler.md │ │ ├── horizontal-drag-gesture-handler.md │ │ ├── long-press-gesture-handler.md │ │ ├── pan-gesture-handler.md │ │ ├── scale-gesture-handler.md │ │ ├── tap-gesture-handler.md │ │ └── vertical-drag-gesture-handler.md │ ├── maps │ │ └── map.md │ ├── media │ │ ├── animation-video.md │ │ ├── animation-view.md │ │ ├── ar-camera.md │ │ ├── audio.md │ │ ├── camera.md │ │ ├── channel-live.md │ │ ├── channel-video.md │ │ ├── image.md │ │ ├── live-player.md │ │ ├── live-pusher.md │ │ ├── lottie.md │ │ ├── rtc-room-item.md │ │ ├── rtc-room.md │ │ ├── video.md │ │ └── voip-room.md │ ├── navig │ │ ├── functional-page-navigator.md │ │ ├── navigation-bar.md │ │ ├── navigator.md │ │ ├── tab-item.md │ │ └── tabs.md │ ├── open │ │ ├── ad-custom.md │ │ ├── ad.md │ │ ├── aweme-data.md │ │ ├── comment-detail.md │ │ ├── comment-list.md │ │ ├── contact-button.md │ │ ├── follow-swan.md │ │ ├── inline-payment-panel.md │ │ ├── lifestyle.md │ │ ├── like.md │ │ ├── login.md │ │ ├── official-account.md │ │ ├── open-data.md │ │ ├── others.md │ │ └── web-view.md │ ├── page-meta.md │ ├── skyline │ │ ├── draggable-sheet.md │ │ ├── grid-builder.md │ │ ├── grid-view.md │ │ ├── list-builder.md │ │ ├── list-view.md │ │ ├── nested-scroll-body.md │ │ ├── nested-scroll-header.md │ │ ├── open-container.md │ │ ├── share-element.md │ │ ├── snapshot.md │ │ ├── span.md │ │ ├── sticky-header.md │ │ └── sticky-section.md │ └── viewContainer │ │ ├── cover-image.md │ │ ├── cover-view.md │ │ ├── custom-wrapper.md │ │ ├── match-media.md │ │ ├── movable-area.md │ │ ├── movable-view.md │ │ ├── native-slot.md │ │ ├── page-container.md │ │ ├── root-portal.md │ │ ├── script.md │ │ ├── scroll-view.md │ │ ├── slot.md │ │ ├── swiper-item.md │ │ ├── swiper.md │ │ └── view.md ├── composition-api.md ├── composition.md ├── condition.md ├── config-detail.md ├── config.md ├── context.md ├── convert-to-react.md ├── css-in-js.mdx ├── css-modules.md ├── custom-tabbar.mdx ├── debug-config.md ├── debug.md ├── difference-to-others.md ├── dynamic-import.md ├── env-mode-config.md ├── envs-debug.md ├── envs.md ├── event.md ├── external-libraries.md ├── folder.md ├── functional-component.md ├── guide.mdx ├── h5.md ├── harmony │ ├── c-api-css.md │ ├── c-api.md │ ├── hybrid.md │ ├── index.md │ ├── lazy │ │ ├── index.md │ │ └── reuse.md │ ├── meta.md │ └── troubleshooting.md ├── hooks.md ├── html.mdx ├── hybrid.mdx ├── implement-note.md ├── independent-subpackage.md ├── join-in.md ├── jquery-like.md ├── jsx.md ├── list.md ├── mdx │ └── image-list.tsx ├── migration.md ├── mini-split-chunks-plugin.md ├── mini-troubleshooting.md ├── miniprogram-plugin.md ├── mobx.md ├── news.js ├── nutui.mdx ├── optimized.mdx ├── ossa.md ├── page-config.mdx ├── pinia.md ├── platform-plugin │ ├── how.md │ ├── index.md │ ├── platform-mini.md │ ├── platform-web.md │ ├── reconciler.md │ └── template.md ├── plugin-custom.md ├── plugin-mini-ci.md ├── plugin.md ├── preact.md ├── prebundle.md ├── prerender.md ├── project-config.md ├── props.md ├── quick-app.md ├── react-18.md ├── react-devtools.md ├── react-entry.mdx ├── react-error-handling.mdx ├── react-native-harmony.md ├── react-native-remind.md ├── react-native.md ├── react-overall.md ├── react-page.mdx ├── redux.md ├── ref.mdx ├── relations.md ├── render-props.md ├── report.md ├── request.md ├── router-extend.mdx ├── router.mdx ├── seowhy.md ├── size.md ├── skyline.mdx ├── spec-for-taro.md ├── specials.md ├── state.md ├── static-reference.md ├── tailwindcss.mdx ├── taro-dom.md ├── taro-in-miniapp.mdx ├── taro-quickapp-manifest.md ├── taroize-troubleshooting.md ├── taroize.md ├── team │ ├── 58anjuke.md │ ├── components.tsx │ ├── index.mdx │ ├── role-collaborator.mdx │ ├── role-committee.mdx │ ├── role-committer.mdx │ ├── role-triage.mdx │ ├── team-community.mdx │ ├── team-core.mdx │ ├── team-innovate.mdx │ ├── team-platform.mdx │ └── team-plugin.mdx ├── template.md ├── test-utils │ ├── fire-event.md │ ├── index.md │ ├── life-cycle.md │ ├── other.md │ ├── queries.md │ └── render.md ├── treasures.md ├── ui-lib.md ├── use-h5.mdx ├── vant.mdx ├── version.md ├── virtual-list.mdx ├── virtual-waterfall.mdx ├── vue-devtools.md ├── vue-entry.mdx ├── vue-overall.mdx ├── vue-page.mdx ├── vue3.md ├── vuex.md ├── wxcloudbase.md └── youshu.md ├── docusaurus.config.js ├── i18n └── en │ ├── code.json │ ├── docusaurus-plugin-content-blog │ ├── 2021-04-22-Taro-3.3-alpha.md │ └── options.json │ ├── docusaurus-plugin-content-docs │ ├── current.json │ ├── current │ │ ├── 58anjuke.md │ │ ├── CONTRIBUTING.md │ │ ├── GETTING-STARTED.md │ │ ├── README.mdx │ │ ├── apis │ │ │ ├── General.md │ │ │ ├── about │ │ │ │ ├── desc.md │ │ │ │ ├── env.md │ │ │ │ ├── events.md │ │ │ │ └── tarocomponent.md │ │ │ ├── ad │ │ │ │ ├── InterstitialAd.md │ │ │ │ ├── RewardedVideoAd.md │ │ │ │ ├── createInterstitialAd.md │ │ │ │ └── createRewardedVideoAd.md │ │ │ ├── alipay │ │ │ │ └── getOpenUserInfo.md │ │ │ ├── base │ │ │ │ ├── arrayBufferToBase64.md │ │ │ │ ├── base64ToArrayBuffer.md │ │ │ │ ├── canIUse.md │ │ │ │ ├── debug │ │ │ │ │ ├── LogManager.md │ │ │ │ │ ├── RealtimeLogManager.md │ │ │ │ │ ├── getLogManager.md │ │ │ │ │ ├── getRealtimeLogManager.md │ │ │ │ │ └── setEnableDebug.md │ │ │ │ ├── env │ │ │ │ │ └── env.md │ │ │ │ ├── system │ │ │ │ │ ├── getSystemInfo.md │ │ │ │ │ └── getSystemInfoSync.md │ │ │ │ ├── update │ │ │ │ │ ├── UpdateManager.md │ │ │ │ │ └── getUpdateManager.md │ │ │ │ └── weapp │ │ │ │ │ ├── app-event │ │ │ │ │ ├── offAppHide.md │ │ │ │ │ ├── offAppShow.md │ │ │ │ │ ├── offAudioInterruptionBegin.md │ │ │ │ │ ├── offAudioInterruptionEnd.md │ │ │ │ │ ├── offError.md │ │ │ │ │ ├── offPageNotFound.md │ │ │ │ │ ├── onAppHide.md │ │ │ │ │ ├── onAppShow.md │ │ │ │ │ ├── onAudioInterruptionBegin.md │ │ │ │ │ ├── onAudioInterruptionEnd.md │ │ │ │ │ ├── onError.md │ │ │ │ │ └── onPageNotFound.md │ │ │ │ │ └── life-cycle │ │ │ │ │ └── getLaunchOptionsSync.md │ │ │ ├── canvas │ │ │ │ ├── Canvas.md │ │ │ │ ├── CanvasContext.md │ │ │ │ ├── CanvasGradient.md │ │ │ │ ├── Color.md │ │ │ │ ├── Image.md │ │ │ │ ├── ImageData.md │ │ │ │ ├── OffscreenCanvas.md │ │ │ │ ├── RenderingContext.md │ │ │ │ ├── canvasGetImageData.md │ │ │ │ ├── canvasPutImageData.md │ │ │ │ ├── canvasToTempFilePath.md │ │ │ │ ├── createCanvasContext.md │ │ │ │ └── createOffscreenCanvas.md │ │ │ ├── cloud │ │ │ │ ├── DB.md │ │ │ │ └── cloud.md │ │ │ ├── device │ │ │ │ ├── accelerometer │ │ │ │ │ ├── offAccelerometerChange.md │ │ │ │ │ ├── onAccelerometerChange.md │ │ │ │ │ ├── startAccelerometer.md │ │ │ │ │ └── stopAccelerometer.md │ │ │ │ ├── battery │ │ │ │ │ ├── getBatteryInfo.md │ │ │ │ │ └── getBatteryInfoSync.md │ │ │ │ ├── ble │ │ │ │ │ ├── closeBLEConnection.md │ │ │ │ │ ├── createBLEConnection.md │ │ │ │ │ ├── getBLEDeviceCharacteristics.md │ │ │ │ │ ├── getBLEDeviceServices.md │ │ │ │ │ ├── notifyBLECharacteristicValueChange.md │ │ │ │ │ ├── onBLECharacteristicValueChange.md │ │ │ │ │ ├── onBLEConnectionStateChange.md │ │ │ │ │ ├── readBLECharacteristicValue.md │ │ │ │ │ └── writeBLECharacteristicValue.md │ │ │ │ ├── bluetooth │ │ │ │ │ ├── closeBluetoothAdapter.md │ │ │ │ │ ├── getBluetoothAdapterState.md │ │ │ │ │ ├── getBluetoothDevices.md │ │ │ │ │ ├── getConnectedBluetoothDevices.md │ │ │ │ │ ├── onBluetoothAdapterStateChange.md │ │ │ │ │ ├── onBluetoothDeviceFound.md │ │ │ │ │ ├── openBluetoothAdapter.md │ │ │ │ │ ├── startBluetoothDevicesDiscovery.md │ │ │ │ │ └── stopBluetoothDevicesDiscovery.md │ │ │ │ ├── clipboard │ │ │ │ │ ├── getClipboardData.md │ │ │ │ │ └── setClipboardData.md │ │ │ │ ├── compass │ │ │ │ │ ├── offCompassChange.md │ │ │ │ │ ├── onCompassChange.md │ │ │ │ │ ├── startCompass.md │ │ │ │ │ └── stopCompass.md │ │ │ │ ├── contact │ │ │ │ │ └── addPhoneContact.md │ │ │ │ ├── gyroscope │ │ │ │ │ ├── offGyroscopeChange.md │ │ │ │ │ ├── onGyroscopeChange.md │ │ │ │ │ ├── startGyroscope.md │ │ │ │ │ └── stopGyroscope.md │ │ │ │ ├── ibeacon │ │ │ │ │ ├── IBeaconInfo.md │ │ │ │ │ ├── getBeacons.md │ │ │ │ │ ├── offBeaconServiceChange.md │ │ │ │ │ ├── offBeaconUpdate.md │ │ │ │ │ ├── onBeaconServiceChange.md │ │ │ │ │ ├── onBeaconUpdate.md │ │ │ │ │ ├── startBeaconDiscovery.md │ │ │ │ │ └── stopBeaconDiscovery.md │ │ │ │ ├── motion │ │ │ │ │ ├── offDeviceMotionChange.md │ │ │ │ │ ├── onDeviceMotionChange.md │ │ │ │ │ ├── startDeviceMotionListening.md │ │ │ │ │ └── stopDeviceMotionListening.md │ │ │ │ ├── network │ │ │ │ │ ├── getNetworkType.md │ │ │ │ │ ├── offNetworkStatusChange.md │ │ │ │ │ └── onNetworkStatusChange.md │ │ │ │ ├── nfc │ │ │ │ │ ├── getHCEState.md │ │ │ │ │ ├── offHCEMessage.md │ │ │ │ │ ├── onHCEMessage.md │ │ │ │ │ ├── sendHCEMessage.md │ │ │ │ │ ├── startHCE.md │ │ │ │ │ └── stopHCE.md │ │ │ │ ├── performance │ │ │ │ │ └── onMemoryWarning.md │ │ │ │ ├── phone │ │ │ │ │ └── makePhoneCall.md │ │ │ │ ├── scan │ │ │ │ │ └── scancode.md │ │ │ │ ├── screen │ │ │ │ │ ├── getScreenBrightness.md │ │ │ │ │ ├── offUserCaptureScreen.md │ │ │ │ │ ├── onUserCaptureScreen.md │ │ │ │ │ ├── setKeepScreenOn.md │ │ │ │ │ └── setScreenBrightness.md │ │ │ │ ├── vibrate │ │ │ │ │ ├── vibrateLong.md │ │ │ │ │ └── vibrateShort.md │ │ │ │ └── wifi │ │ │ │ │ ├── WifiInfo.md │ │ │ │ │ ├── connectWifi.md │ │ │ │ │ ├── getConnectedWifi.md │ │ │ │ │ ├── getWifiList.md │ │ │ │ │ ├── offGetWifiList.md │ │ │ │ │ ├── offWifiConnected.md │ │ │ │ │ ├── onGetWifiList.md │ │ │ │ │ ├── onWifiConnected.md │ │ │ │ │ ├── setWifiList.md │ │ │ │ │ ├── startWifi.md │ │ │ │ │ └── stopWifi.md │ │ │ ├── ext │ │ │ │ ├── getExtConfig.md │ │ │ │ └── getExtConfigSync.md │ │ │ ├── files │ │ │ │ ├── FileSystemManager.md │ │ │ │ ├── Stats.md │ │ │ │ ├── getFileInfo.md │ │ │ │ ├── getFileSystemManager.md │ │ │ │ ├── getSavedFileInfo.md │ │ │ │ ├── getSavedFileList.md │ │ │ │ ├── openDocument.md │ │ │ │ ├── removeSavedFile.md │ │ │ │ └── saveFile.md │ │ │ ├── framework │ │ │ │ ├── App.md │ │ │ │ ├── Page.md │ │ │ │ ├── getApp.md │ │ │ │ └── getCurrentPages.md │ │ │ ├── location │ │ │ │ ├── chooseLocation.md │ │ │ │ ├── getLocation.md │ │ │ │ ├── offLocationChange.md │ │ │ │ ├── onLocationChange.md │ │ │ │ ├── openLocation.md │ │ │ │ ├── startLocationUpdate.md │ │ │ │ ├── startLocationUpdateBackground.md │ │ │ │ └── stopLocationUpdate.md │ │ │ ├── media │ │ │ │ ├── audio │ │ │ │ │ ├── AudioContext.md │ │ │ │ │ ├── InnerAudioContext.md │ │ │ │ │ ├── createAudioContext.md │ │ │ │ │ ├── createInnerAudioContext.md │ │ │ │ │ ├── getAvailableAudioSources.md │ │ │ │ │ ├── pauseVoice.md │ │ │ │ │ ├── playVoice.md │ │ │ │ │ ├── setInnerAudioOption.md │ │ │ │ │ └── stopVoice.md │ │ │ │ ├── background-audio │ │ │ │ │ ├── BackgroundAudioManager.md │ │ │ │ │ ├── getBackgroundAudioManager.md │ │ │ │ │ ├── getBackgroundAudioPlayerState.md │ │ │ │ │ ├── onBackgroundAudioPause.md │ │ │ │ │ ├── onBackgroundAudioPlay.md │ │ │ │ │ ├── onBackgroundAudioStop.md │ │ │ │ │ ├── pauseBackgroundAudio.md │ │ │ │ │ ├── playBackgroundAudio.md │ │ │ │ │ ├── seekBackgroundAudio.md │ │ │ │ │ └── stopBackgroundAudio.md │ │ │ │ ├── camera │ │ │ │ │ ├── CameraContext.md │ │ │ │ │ ├── CameraFrameListener.md │ │ │ │ │ └── createCameraContext.md │ │ │ │ ├── editor │ │ │ │ │ └── EditorContext.md │ │ │ │ ├── image │ │ │ │ │ ├── chooseImage.md │ │ │ │ │ ├── chooseMedia.md │ │ │ │ │ ├── chooseMessageFile.md │ │ │ │ │ ├── compressImage.md │ │ │ │ │ ├── getImageInfo.md │ │ │ │ │ ├── previewImage.md │ │ │ │ │ └── saveImageToPhotosAlbum.md │ │ │ │ ├── live │ │ │ │ │ ├── LivePlayerContext.md │ │ │ │ │ ├── LivePusherContext.md │ │ │ │ │ ├── createLivePlayerContext.md │ │ │ │ │ └── createLivePusherContext.md │ │ │ │ ├── map │ │ │ │ │ ├── MapContext.md │ │ │ │ │ └── createMapContext.md │ │ │ │ ├── recorder │ │ │ │ │ ├── RecorderManager.md │ │ │ │ │ ├── getRecorderManager.md │ │ │ │ │ ├── startRecord.md │ │ │ │ │ └── stopRecord.md │ │ │ │ ├── video-processing │ │ │ │ │ ├── MediaContainer.md │ │ │ │ │ ├── MediaTrack.md │ │ │ │ │ └── createMediaContainer.md │ │ │ │ └── video │ │ │ │ │ ├── VideoContext.md │ │ │ │ │ ├── chooseVideo.md │ │ │ │ │ ├── createVideoContext.md │ │ │ │ │ └── saveVideoToPhotosAlbum.md │ │ │ ├── network │ │ │ │ ├── download │ │ │ │ │ ├── DownloadTask.md │ │ │ │ │ └── downloadFile.md │ │ │ │ ├── mdns │ │ │ │ │ ├── offLocalServiceDiscoveryStop.md │ │ │ │ │ ├── offLocalServiceFound.md │ │ │ │ │ ├── offLocalServiceLost.md │ │ │ │ │ ├── offLocalServiceResolveFail.md │ │ │ │ │ ├── onLocalServiceDiscoveryStop.md │ │ │ │ │ ├── onLocalServiceFound.md │ │ │ │ │ ├── onLocalServiceLost.md │ │ │ │ │ ├── onLocalServiceResolveFail.md │ │ │ │ │ ├── startLocalServiceDiscovery.md │ │ │ │ │ └── stopLocalServiceDiscovery.md │ │ │ │ ├── request │ │ │ │ │ ├── RequestTask.md │ │ │ │ │ ├── addInterceptor.md │ │ │ │ │ └── request.md │ │ │ │ ├── udp │ │ │ │ │ ├── UDPSocket.md │ │ │ │ │ └── createUDPSocket.md │ │ │ │ ├── upload │ │ │ │ │ ├── UploadTask.md │ │ │ │ │ └── uploadFile.md │ │ │ │ └── webSocket │ │ │ │ │ ├── SocketTask.md │ │ │ │ │ ├── closeSocket.md │ │ │ │ │ ├── connectSocket.md │ │ │ │ │ ├── onSocketClose.md │ │ │ │ │ ├── onSocketError.md │ │ │ │ │ ├── onSocketMessage.md │ │ │ │ │ ├── onSocketOpen.md │ │ │ │ │ └── sendSocketMessage.md │ │ │ ├── open-api │ │ │ │ ├── account │ │ │ │ │ └── getAccountInfoSync.md │ │ │ │ ├── address │ │ │ │ │ └── chooseAddress.md │ │ │ │ ├── authorize │ │ │ │ │ └── authorize.md │ │ │ │ ├── card │ │ │ │ │ ├── addCard.md │ │ │ │ │ ├── card.md │ │ │ │ │ └── openCard.md │ │ │ │ ├── data-analysis │ │ │ │ │ └── reportAnalytics.md │ │ │ │ ├── facial │ │ │ │ │ ├── checkIsSupportFacialRecognition.md │ │ │ │ │ ├── startFacialRecognitionVerify.md │ │ │ │ │ └── startFacialRecognitionVerifyAndUploadVideo.md │ │ │ │ ├── invoice │ │ │ │ │ ├── chooseInvoice.md │ │ │ │ │ └── chooseInvoiceTitle.md │ │ │ │ ├── login │ │ │ │ │ ├── checkSession.md │ │ │ │ │ └── login.md │ │ │ │ ├── navigate │ │ │ │ │ ├── navigateBackMiniProgram.md │ │ │ │ │ └── navigateToMiniProgram.md │ │ │ │ ├── payment │ │ │ │ │ ├── faceVerifyForPay.md │ │ │ │ │ └── requestPayment.md │ │ │ │ ├── report │ │ │ │ │ └── reportMonitor.md │ │ │ │ ├── settings │ │ │ │ │ ├── AuthSetting.md │ │ │ │ │ ├── getSetting.md │ │ │ │ │ └── openSetting.md │ │ │ │ ├── soter │ │ │ │ │ ├── checkIsSoterEnrolledInDevice.md │ │ │ │ │ ├── checkIsSupportSoterAuthentication.md │ │ │ │ │ └── startSoterAuthentication.md │ │ │ │ ├── subscribe-message │ │ │ │ │ └── requestSubscribeMessage.md │ │ │ │ ├── user-info │ │ │ │ │ ├── UserInfo.md │ │ │ │ │ ├── getUserInfo.md │ │ │ │ │ └── getUserProfile.md │ │ │ │ └── werun │ │ │ │ │ └── getWeRunData.md │ │ │ ├── route │ │ │ │ ├── EventChannel.md │ │ │ │ ├── navigateBack.md │ │ │ │ ├── navigateTo.md │ │ │ │ ├── reLaunch.md │ │ │ │ ├── redirectTo.md │ │ │ │ └── switchTab.md │ │ │ ├── share │ │ │ │ ├── getShareInfo.md │ │ │ │ ├── hideShareMenu.md │ │ │ │ ├── showShareMenu.md │ │ │ │ └── updateShareMenu.md │ │ │ ├── storage │ │ │ │ ├── background-fetch │ │ │ │ │ ├── getBackgroundFetchData.md │ │ │ │ │ ├── getBackgroundFetchToken.md │ │ │ │ │ ├── onBackgroundFetchData.md │ │ │ │ │ └── setBackgroundFetchToken.md │ │ │ │ ├── clearStorage.md │ │ │ │ ├── clearStorageSync.md │ │ │ │ ├── getStorage.md │ │ │ │ ├── getStorageInfo.md │ │ │ │ ├── getStorageInfoSync.md │ │ │ │ ├── getStorageSync.md │ │ │ │ ├── removeStorage.md │ │ │ │ ├── removeStorageSync.md │ │ │ │ ├── setStorage.md │ │ │ │ └── setStorageSync.md │ │ │ ├── swan │ │ │ │ └── setPageInfo.md │ │ │ ├── ui │ │ │ │ ├── animation │ │ │ │ │ ├── Animation.md │ │ │ │ │ └── createAnimation.md │ │ │ │ ├── background │ │ │ │ │ ├── setBackgroundColor.md │ │ │ │ │ └── setBackgroundTextStyle.md │ │ │ │ ├── custom-component │ │ │ │ │ └── nextTick.md │ │ │ │ ├── fonts │ │ │ │ │ └── loadFontFace.md │ │ │ │ ├── interaction │ │ │ │ │ ├── hideLoading.md │ │ │ │ │ ├── hideToast.md │ │ │ │ │ ├── showActionSheet.md │ │ │ │ │ ├── showLoading.md │ │ │ │ │ ├── showModal.md │ │ │ │ │ └── showToast.md │ │ │ │ ├── keyboard │ │ │ │ │ ├── getSelectedTextRange.md │ │ │ │ │ ├── hideKeyboard.md │ │ │ │ │ ├── offKeyboardHeightChange.md │ │ │ │ │ └── onKeyboardHeightChange.md │ │ │ │ ├── menu │ │ │ │ │ └── getMenuButtonBoundingClientRect.md │ │ │ │ ├── navigation-bar │ │ │ │ │ ├── hideHomeButton.md │ │ │ │ │ ├── hideNavigationBarLoading.md │ │ │ │ │ ├── setNavigationBarColor.md │ │ │ │ │ ├── setNavigationBarTitle.md │ │ │ │ │ └── showNavigationBarLoading.md │ │ │ │ ├── pull-down-refresh │ │ │ │ │ ├── startPullDownRefresh.md │ │ │ │ │ └── stopPullDownRefresh.md │ │ │ │ ├── scroll │ │ │ │ │ └── pageScrollTo.md │ │ │ │ ├── sticky │ │ │ │ │ └── setTopBarText.md │ │ │ │ ├── tab-bar │ │ │ │ │ ├── hideTabBar.md │ │ │ │ │ ├── hideTabBarRedDot.md │ │ │ │ │ ├── removeTabBarBadge.md │ │ │ │ │ ├── setTabBarBadge.md │ │ │ │ │ ├── setTabBarItem.md │ │ │ │ │ ├── setTabBarStyle.md │ │ │ │ │ ├── showTabBar.md │ │ │ │ │ └── showTabBarRedDot.md │ │ │ │ └── window │ │ │ │ │ ├── offWindowResize.md │ │ │ │ │ └── onWindowResize.md │ │ │ ├── worker │ │ │ │ ├── Worker.md │ │ │ │ └── createWorker.md │ │ │ └── wxml │ │ │ │ ├── IntersectionObserver.md │ │ │ │ ├── NodesRef.md │ │ │ │ ├── SelectorQuery.md │ │ │ │ ├── createIntersectionObserver.md │ │ │ │ └── createSelectorQuery.md │ │ ├── app-config.md │ │ ├── babel-config.md │ │ ├── best-practice.md │ │ ├── children.md │ │ ├── cli.md │ │ ├── codebase-overview.md │ │ ├── come-from-miniapp.mdx │ │ ├── communicate.md │ │ ├── components-desc.md │ │ ├── components │ │ │ ├── base │ │ │ │ ├── icon.md │ │ │ │ ├── progress.md │ │ │ │ ├── rich-text.md │ │ │ │ └── text.md │ │ │ ├── canvas │ │ │ │ └── canvas.md │ │ │ ├── forms │ │ │ │ ├── button.md │ │ │ │ ├── checkbox-group.md │ │ │ │ ├── checkbox.md │ │ │ │ ├── editor.md │ │ │ │ ├── form.md │ │ │ │ ├── input.md │ │ │ │ ├── label.md │ │ │ │ ├── picker-view-column.md │ │ │ │ ├── picker-view.md │ │ │ │ ├── picker.md │ │ │ │ ├── radio-group.md │ │ │ │ ├── radio.md │ │ │ │ ├── slider.md │ │ │ │ ├── switch.md │ │ │ │ └── textarea.md │ │ │ ├── maps │ │ │ │ └── map.md │ │ │ ├── media │ │ │ │ ├── audio.md │ │ │ │ ├── camera.md │ │ │ │ ├── image.md │ │ │ │ ├── live-player.md │ │ │ │ ├── live-pusher.md │ │ │ │ └── video.md │ │ │ ├── navig │ │ │ │ ├── Functional-Page-Navigator.md │ │ │ │ └── navigator.md │ │ │ ├── open │ │ │ │ ├── ad.md │ │ │ │ ├── official-account.md │ │ │ │ ├── open-data.md │ │ │ │ ├── others.md │ │ │ │ └── web-view.md │ │ │ └── viewContainer │ │ │ │ ├── cover-image.md │ │ │ │ ├── cover-view.md │ │ │ │ ├── match-media.md │ │ │ │ ├── movable-area.md │ │ │ │ ├── movable-view.md │ │ │ │ ├── scroll-view.md │ │ │ │ ├── swiper-item.md │ │ │ │ ├── swiper.md │ │ │ │ └── view.md │ │ ├── composition.md │ │ ├── config-detail.md │ │ ├── config.md │ │ ├── convert-to-react.md │ │ ├── css-in-js.mdx │ │ ├── css-modules.md │ │ ├── debug-config.md │ │ ├── debug.md │ │ ├── envs-debug.md │ │ ├── envs.md │ │ ├── folder.md │ │ ├── guide.mdx │ │ ├── guides │ │ │ └── index.js │ │ ├── h5.md │ │ ├── hooks.md │ │ ├── html.mdx │ │ ├── hybrid.mdx │ │ ├── implement-note.md │ │ ├── join-in.md │ │ ├── jquery-like.md │ │ ├── mdx │ │ │ └── image-list.tsx │ │ ├── miniprogram-plugin.md │ │ ├── nerv.md │ │ ├── nutui.mdx │ │ ├── optimized.mdx │ │ ├── page-config.md │ │ ├── platform-plugin-base.md │ │ ├── platform-plugin-how.md │ │ ├── platform-plugin-reconciler.md │ │ ├── platform-plugin-template.md │ │ ├── platform-plugin.md │ │ ├── plugin.md │ │ ├── prerender.md │ │ ├── project-config.md │ │ ├── react-devtools.md │ │ ├── react-entry.mdx │ │ ├── react-native-remind.md │ │ ├── react-native.md │ │ ├── react-overall.md │ │ ├── react-page.mdx │ │ ├── react.md │ │ ├── redux.md │ │ ├── render-props.md │ │ ├── report.md │ │ ├── router.md │ │ ├── router.mdx │ │ ├── seowhy.md │ │ ├── size.md │ │ ├── state.md │ │ ├── static-reference.md │ │ ├── taro-in-miniapp.md │ │ ├── taroize-troubleshooting.md │ │ ├── taroize.md │ │ ├── team.md │ │ ├── template.md │ │ ├── treasures.md │ │ ├── use-h5.mdx │ │ ├── vant.mdx │ │ ├── version.md │ │ ├── virtual-list.md │ │ ├── vue-devtools.md │ │ ├── vue-entry.mdx │ │ ├── vue-overall.mdx │ │ ├── vue-page.mdx │ │ ├── vue.md │ │ ├── vue3.md │ │ ├── wxcloudbase.md │ │ └── youshu.md │ ├── version-1.x.json │ ├── version-2.x.json │ ├── version-3.x.json │ ├── version-3.x │ │ ├── 58anjuke.md │ │ ├── CONTRIBUTING.md │ │ ├── GETTING-STARTED.md │ │ ├── README.mdx │ │ ├── apis │ │ │ ├── General.md │ │ │ ├── about │ │ │ │ ├── desc.md │ │ │ │ ├── env.md │ │ │ │ ├── events.md │ │ │ │ └── tarocomponent.md │ │ │ ├── ad │ │ │ │ ├── InterstitialAd.md │ │ │ │ ├── RewardedVideoAd.md │ │ │ │ ├── createInterstitialAd.md │ │ │ │ └── createRewardedVideoAd.md │ │ │ ├── alipay │ │ │ │ └── getOpenUserInfo.md │ │ │ ├── base │ │ │ │ ├── arrayBufferToBase64.md │ │ │ │ ├── base64ToArrayBuffer.md │ │ │ │ ├── canIUse.md │ │ │ │ ├── debug │ │ │ │ │ ├── LogManager.md │ │ │ │ │ ├── RealtimeLogManager.md │ │ │ │ │ ├── getLogManager.md │ │ │ │ │ ├── getRealtimeLogManager.md │ │ │ │ │ └── setEnableDebug.md │ │ │ │ ├── env │ │ │ │ │ └── env.md │ │ │ │ ├── system │ │ │ │ │ ├── getSystemInfo.md │ │ │ │ │ └── getSystemInfoSync.md │ │ │ │ ├── update │ │ │ │ │ ├── UpdateManager.md │ │ │ │ │ └── getUpdateManager.md │ │ │ │ └── weapp │ │ │ │ │ ├── app-event │ │ │ │ │ ├── offAppHide.md │ │ │ │ │ ├── offAppShow.md │ │ │ │ │ ├── offAudioInterruptionBegin.md │ │ │ │ │ ├── offAudioInterruptionEnd.md │ │ │ │ │ ├── offError.md │ │ │ │ │ ├── offPageNotFound.md │ │ │ │ │ ├── onAppHide.md │ │ │ │ │ ├── onAppShow.md │ │ │ │ │ ├── onAudioInterruptionBegin.md │ │ │ │ │ ├── onAudioInterruptionEnd.md │ │ │ │ │ ├── onError.md │ │ │ │ │ └── onPageNotFound.md │ │ │ │ │ └── life-cycle │ │ │ │ │ └── getLaunchOptionsSync.md │ │ │ ├── canvas │ │ │ │ ├── Canvas.md │ │ │ │ ├── CanvasContext.md │ │ │ │ ├── CanvasGradient.md │ │ │ │ ├── Color.md │ │ │ │ ├── Image.md │ │ │ │ ├── ImageData.md │ │ │ │ ├── OffscreenCanvas.md │ │ │ │ ├── RenderingContext.md │ │ │ │ ├── canvasGetImageData.md │ │ │ │ ├── canvasPutImageData.md │ │ │ │ ├── canvasToTempFilePath.md │ │ │ │ ├── createCanvasContext.md │ │ │ │ └── createOffscreenCanvas.md │ │ │ ├── cloud │ │ │ │ ├── DB.md │ │ │ │ └── cloud.md │ │ │ ├── device │ │ │ │ ├── accelerometer │ │ │ │ │ ├── offAccelerometerChange.md │ │ │ │ │ ├── onAccelerometerChange.md │ │ │ │ │ ├── startAccelerometer.md │ │ │ │ │ └── stopAccelerometer.md │ │ │ │ ├── battery │ │ │ │ │ ├── getBatteryInfo.md │ │ │ │ │ └── getBatteryInfoSync.md │ │ │ │ ├── ble │ │ │ │ │ ├── closeBLEConnection.md │ │ │ │ │ ├── createBLEConnection.md │ │ │ │ │ ├── getBLEDeviceCharacteristics.md │ │ │ │ │ ├── getBLEDeviceServices.md │ │ │ │ │ ├── notifyBLECharacteristicValueChange.md │ │ │ │ │ ├── onBLECharacteristicValueChange.md │ │ │ │ │ ├── onBLEConnectionStateChange.md │ │ │ │ │ ├── readBLECharacteristicValue.md │ │ │ │ │ └── writeBLECharacteristicValue.md │ │ │ │ ├── bluetooth │ │ │ │ │ ├── closeBluetoothAdapter.md │ │ │ │ │ ├── getBluetoothAdapterState.md │ │ │ │ │ ├── getBluetoothDevices.md │ │ │ │ │ ├── getConnectedBluetoothDevices.md │ │ │ │ │ ├── onBluetoothAdapterStateChange.md │ │ │ │ │ ├── onBluetoothDeviceFound.md │ │ │ │ │ ├── openBluetoothAdapter.md │ │ │ │ │ ├── startBluetoothDevicesDiscovery.md │ │ │ │ │ └── stopBluetoothDevicesDiscovery.md │ │ │ │ ├── clipboard │ │ │ │ │ ├── getClipboardData.md │ │ │ │ │ └── setClipboardData.md │ │ │ │ ├── compass │ │ │ │ │ ├── offCompassChange.md │ │ │ │ │ ├── onCompassChange.md │ │ │ │ │ ├── startCompass.md │ │ │ │ │ └── stopCompass.md │ │ │ │ ├── contact │ │ │ │ │ └── addPhoneContact.md │ │ │ │ ├── gyroscope │ │ │ │ │ ├── offGyroscopeChange.md │ │ │ │ │ ├── onGyroscopeChange.md │ │ │ │ │ ├── startGyroscope.md │ │ │ │ │ └── stopGyroscope.md │ │ │ │ ├── ibeacon │ │ │ │ │ ├── IBeaconInfo.md │ │ │ │ │ ├── getBeacons.md │ │ │ │ │ ├── offBeaconServiceChange.md │ │ │ │ │ ├── offBeaconUpdate.md │ │ │ │ │ ├── onBeaconServiceChange.md │ │ │ │ │ ├── onBeaconUpdate.md │ │ │ │ │ ├── startBeaconDiscovery.md │ │ │ │ │ └── stopBeaconDiscovery.md │ │ │ │ ├── motion │ │ │ │ │ ├── offDeviceMotionChange.md │ │ │ │ │ ├── onDeviceMotionChange.md │ │ │ │ │ ├── startDeviceMotionListening.md │ │ │ │ │ └── stopDeviceMotionListening.md │ │ │ │ ├── network │ │ │ │ │ ├── getNetworkType.md │ │ │ │ │ ├── offNetworkStatusChange.md │ │ │ │ │ └── onNetworkStatusChange.md │ │ │ │ ├── nfc │ │ │ │ │ ├── getHCEState.md │ │ │ │ │ ├── offHCEMessage.md │ │ │ │ │ ├── onHCEMessage.md │ │ │ │ │ ├── sendHCEMessage.md │ │ │ │ │ ├── startHCE.md │ │ │ │ │ └── stopHCE.md │ │ │ │ ├── performance │ │ │ │ │ └── onMemoryWarning.md │ │ │ │ ├── phone │ │ │ │ │ └── makePhoneCall.md │ │ │ │ ├── scan │ │ │ │ │ └── scancode.md │ │ │ │ ├── screen │ │ │ │ │ ├── getScreenBrightness.md │ │ │ │ │ ├── offUserCaptureScreen.md │ │ │ │ │ ├── onUserCaptureScreen.md │ │ │ │ │ ├── setKeepScreenOn.md │ │ │ │ │ └── setScreenBrightness.md │ │ │ │ ├── vibrate │ │ │ │ │ ├── vibrateLong.md │ │ │ │ │ └── vibrateShort.md │ │ │ │ └── wifi │ │ │ │ │ ├── WifiInfo.md │ │ │ │ │ ├── connectWifi.md │ │ │ │ │ ├── getConnectedWifi.md │ │ │ │ │ ├── getWifiList.md │ │ │ │ │ ├── offGetWifiList.md │ │ │ │ │ ├── offWifiConnected.md │ │ │ │ │ ├── onGetWifiList.md │ │ │ │ │ ├── onWifiConnected.md │ │ │ │ │ ├── setWifiList.md │ │ │ │ │ ├── startWifi.md │ │ │ │ │ └── stopWifi.md │ │ │ ├── ext │ │ │ │ ├── getExtConfig.md │ │ │ │ └── getExtConfigSync.md │ │ │ ├── files │ │ │ │ ├── FileSystemManager.md │ │ │ │ ├── Stats.md │ │ │ │ ├── getFileInfo.md │ │ │ │ ├── getFileSystemManager.md │ │ │ │ ├── getSavedFileInfo.md │ │ │ │ ├── getSavedFileList.md │ │ │ │ ├── openDocument.md │ │ │ │ ├── removeSavedFile.md │ │ │ │ └── saveFile.md │ │ │ ├── framework │ │ │ │ ├── App.md │ │ │ │ ├── Page.md │ │ │ │ ├── getApp.md │ │ │ │ └── getCurrentPages.md │ │ │ ├── location │ │ │ │ ├── chooseLocation.md │ │ │ │ ├── getLocation.md │ │ │ │ ├── offLocationChange.md │ │ │ │ ├── onLocationChange.md │ │ │ │ ├── openLocation.md │ │ │ │ ├── startLocationUpdate.md │ │ │ │ ├── startLocationUpdateBackground.md │ │ │ │ └── stopLocationUpdate.md │ │ │ ├── media │ │ │ │ ├── audio │ │ │ │ │ ├── AudioContext.md │ │ │ │ │ ├── InnerAudioContext.md │ │ │ │ │ ├── createAudioContext.md │ │ │ │ │ ├── createInnerAudioContext.md │ │ │ │ │ ├── getAvailableAudioSources.md │ │ │ │ │ ├── pauseVoice.md │ │ │ │ │ ├── playVoice.md │ │ │ │ │ ├── setInnerAudioOption.md │ │ │ │ │ └── stopVoice.md │ │ │ │ ├── background-audio │ │ │ │ │ ├── BackgroundAudioManager.md │ │ │ │ │ ├── getBackgroundAudioManager.md │ │ │ │ │ ├── getBackgroundAudioPlayerState.md │ │ │ │ │ ├── onBackgroundAudioPause.md │ │ │ │ │ ├── onBackgroundAudioPlay.md │ │ │ │ │ ├── onBackgroundAudioStop.md │ │ │ │ │ ├── pauseBackgroundAudio.md │ │ │ │ │ ├── playBackgroundAudio.md │ │ │ │ │ ├── seekBackgroundAudio.md │ │ │ │ │ └── stopBackgroundAudio.md │ │ │ │ ├── camera │ │ │ │ │ ├── CameraContext.md │ │ │ │ │ ├── CameraFrameListener.md │ │ │ │ │ └── createCameraContext.md │ │ │ │ ├── editor │ │ │ │ │ └── EditorContext.md │ │ │ │ ├── image │ │ │ │ │ ├── chooseImage.md │ │ │ │ │ ├── chooseMedia.md │ │ │ │ │ ├── chooseMessageFile.md │ │ │ │ │ ├── compressImage.md │ │ │ │ │ ├── getImageInfo.md │ │ │ │ │ ├── previewImage.md │ │ │ │ │ └── saveImageToPhotosAlbum.md │ │ │ │ ├── live │ │ │ │ │ ├── LivePlayerContext.md │ │ │ │ │ ├── LivePusherContext.md │ │ │ │ │ ├── createLivePlayerContext.md │ │ │ │ │ └── createLivePusherContext.md │ │ │ │ ├── map │ │ │ │ │ ├── MapContext.md │ │ │ │ │ └── createMapContext.md │ │ │ │ ├── recorder │ │ │ │ │ ├── RecorderManager.md │ │ │ │ │ ├── getRecorderManager.md │ │ │ │ │ ├── startRecord.md │ │ │ │ │ └── stopRecord.md │ │ │ │ ├── video-processing │ │ │ │ │ ├── MediaContainer.md │ │ │ │ │ ├── MediaTrack.md │ │ │ │ │ └── createMediaContainer.md │ │ │ │ └── video │ │ │ │ │ ├── VideoContext.md │ │ │ │ │ ├── chooseVideo.md │ │ │ │ │ ├── createVideoContext.md │ │ │ │ │ └── saveVideoToPhotosAlbum.md │ │ │ ├── network │ │ │ │ ├── download │ │ │ │ │ ├── DownloadTask.md │ │ │ │ │ └── downloadFile.md │ │ │ │ ├── mdns │ │ │ │ │ ├── offLocalServiceDiscoveryStop.md │ │ │ │ │ ├── offLocalServiceFound.md │ │ │ │ │ ├── offLocalServiceLost.md │ │ │ │ │ ├── offLocalServiceResolveFail.md │ │ │ │ │ ├── onLocalServiceDiscoveryStop.md │ │ │ │ │ ├── onLocalServiceFound.md │ │ │ │ │ ├── onLocalServiceLost.md │ │ │ │ │ ├── onLocalServiceResolveFail.md │ │ │ │ │ ├── startLocalServiceDiscovery.md │ │ │ │ │ └── stopLocalServiceDiscovery.md │ │ │ │ ├── request │ │ │ │ │ ├── RequestTask.md │ │ │ │ │ ├── addInterceptor.md │ │ │ │ │ └── request.md │ │ │ │ ├── udp │ │ │ │ │ ├── UDPSocket.md │ │ │ │ │ └── createUDPSocket.md │ │ │ │ ├── upload │ │ │ │ │ ├── UploadTask.md │ │ │ │ │ └── uploadFile.md │ │ │ │ └── webSocket │ │ │ │ │ ├── SocketTask.md │ │ │ │ │ ├── closeSocket.md │ │ │ │ │ ├── connectSocket.md │ │ │ │ │ ├── onSocketClose.md │ │ │ │ │ ├── onSocketError.md │ │ │ │ │ ├── onSocketMessage.md │ │ │ │ │ ├── onSocketOpen.md │ │ │ │ │ └── sendSocketMessage.md │ │ │ ├── open-api │ │ │ │ ├── account │ │ │ │ │ └── getAccountInfoSync.md │ │ │ │ ├── address │ │ │ │ │ └── chooseAddress.md │ │ │ │ ├── authorize │ │ │ │ │ └── authorize.md │ │ │ │ ├── card │ │ │ │ │ ├── addCard.md │ │ │ │ │ ├── card.md │ │ │ │ │ └── openCard.md │ │ │ │ ├── data-analysis │ │ │ │ │ └── reportAnalytics.md │ │ │ │ ├── facial │ │ │ │ │ ├── checkIsSupportFacialRecognition.md │ │ │ │ │ ├── startFacialRecognitionVerify.md │ │ │ │ │ └── startFacialRecognitionVerifyAndUploadVideo.md │ │ │ │ ├── invoice │ │ │ │ │ ├── chooseInvoice.md │ │ │ │ │ └── chooseInvoiceTitle.md │ │ │ │ ├── login │ │ │ │ │ ├── checkSession.md │ │ │ │ │ └── login.md │ │ │ │ ├── navigate │ │ │ │ │ ├── navigateBackMiniProgram.md │ │ │ │ │ └── navigateToMiniProgram.md │ │ │ │ ├── payment │ │ │ │ │ ├── faceVerifyForPay.md │ │ │ │ │ └── requestPayment.md │ │ │ │ ├── report │ │ │ │ │ └── reportMonitor.md │ │ │ │ ├── settings │ │ │ │ │ ├── AuthSetting.md │ │ │ │ │ ├── getSetting.md │ │ │ │ │ └── openSetting.md │ │ │ │ ├── soter │ │ │ │ │ ├── checkIsSoterEnrolledInDevice.md │ │ │ │ │ ├── checkIsSupportSoterAuthentication.md │ │ │ │ │ └── startSoterAuthentication.md │ │ │ │ ├── subscribe-message │ │ │ │ │ └── requestSubscribeMessage.md │ │ │ │ ├── user-info │ │ │ │ │ ├── UserInfo.md │ │ │ │ │ ├── getUserInfo.md │ │ │ │ │ └── getUserProfile.md │ │ │ │ └── werun │ │ │ │ │ └── getWeRunData.md │ │ │ ├── route │ │ │ │ ├── EventChannel.md │ │ │ │ ├── navigateBack.md │ │ │ │ ├── navigateTo.md │ │ │ │ ├── reLaunch.md │ │ │ │ ├── redirectTo.md │ │ │ │ └── switchTab.md │ │ │ ├── share │ │ │ │ ├── getShareInfo.md │ │ │ │ ├── hideShareMenu.md │ │ │ │ ├── showShareMenu.md │ │ │ │ └── updateShareMenu.md │ │ │ ├── storage │ │ │ │ ├── background-fetch │ │ │ │ │ ├── getBackgroundFetchData.md │ │ │ │ │ ├── getBackgroundFetchToken.md │ │ │ │ │ ├── onBackgroundFetchData.md │ │ │ │ │ └── setBackgroundFetchToken.md │ │ │ │ ├── clearStorage.md │ │ │ │ ├── clearStorageSync.md │ │ │ │ ├── getStorage.md │ │ │ │ ├── getStorageInfo.md │ │ │ │ ├── getStorageInfoSync.md │ │ │ │ ├── getStorageSync.md │ │ │ │ ├── removeStorage.md │ │ │ │ ├── removeStorageSync.md │ │ │ │ ├── setStorage.md │ │ │ │ └── setStorageSync.md │ │ │ ├── swan │ │ │ │ └── setPageInfo.md │ │ │ ├── ui │ │ │ │ ├── animation │ │ │ │ │ ├── Animation.md │ │ │ │ │ └── createAnimation.md │ │ │ │ ├── background │ │ │ │ │ ├── setBackgroundColor.md │ │ │ │ │ └── setBackgroundTextStyle.md │ │ │ │ ├── custom-component │ │ │ │ │ └── nextTick.md │ │ │ │ ├── fonts │ │ │ │ │ └── loadFontFace.md │ │ │ │ ├── interaction │ │ │ │ │ ├── hideLoading.md │ │ │ │ │ ├── hideToast.md │ │ │ │ │ ├── showActionSheet.md │ │ │ │ │ ├── showLoading.md │ │ │ │ │ ├── showModal.md │ │ │ │ │ └── showToast.md │ │ │ │ ├── keyboard │ │ │ │ │ ├── getSelectedTextRange.md │ │ │ │ │ ├── hideKeyboard.md │ │ │ │ │ ├── offKeyboardHeightChange.md │ │ │ │ │ └── onKeyboardHeightChange.md │ │ │ │ ├── menu │ │ │ │ │ └── getMenuButtonBoundingClientRect.md │ │ │ │ ├── navigation-bar │ │ │ │ │ ├── hideHomeButton.md │ │ │ │ │ ├── hideNavigationBarLoading.md │ │ │ │ │ ├── setNavigationBarColor.md │ │ │ │ │ ├── setNavigationBarTitle.md │ │ │ │ │ └── showNavigationBarLoading.md │ │ │ │ ├── pull-down-refresh │ │ │ │ │ ├── startPullDownRefresh.md │ │ │ │ │ └── stopPullDownRefresh.md │ │ │ │ ├── scroll │ │ │ │ │ └── pageScrollTo.md │ │ │ │ ├── sticky │ │ │ │ │ └── setTopBarText.md │ │ │ │ ├── tab-bar │ │ │ │ │ ├── hideTabBar.md │ │ │ │ │ ├── hideTabBarRedDot.md │ │ │ │ │ ├── removeTabBarBadge.md │ │ │ │ │ ├── setTabBarBadge.md │ │ │ │ │ ├── setTabBarItem.md │ │ │ │ │ ├── setTabBarStyle.md │ │ │ │ │ ├── showTabBar.md │ │ │ │ │ └── showTabBarRedDot.md │ │ │ │ └── window │ │ │ │ │ ├── offWindowResize.md │ │ │ │ │ └── onWindowResize.md │ │ │ ├── worker │ │ │ │ ├── Worker.md │ │ │ │ └── createWorker.md │ │ │ └── wxml │ │ │ │ ├── IntersectionObserver.md │ │ │ │ ├── NodesRef.md │ │ │ │ ├── SelectorQuery.md │ │ │ │ ├── createIntersectionObserver.md │ │ │ │ └── createSelectorQuery.md │ │ ├── app-config.md │ │ ├── babel-config.md │ │ ├── best-practice.md │ │ ├── children.md │ │ ├── cli.md │ │ ├── codebase-overview.md │ │ ├── come-from-miniapp.mdx │ │ ├── communicate.md │ │ ├── components-desc.md │ │ ├── components │ │ │ ├── base │ │ │ │ ├── icon.md │ │ │ │ ├── progress.md │ │ │ │ ├── rich-text.md │ │ │ │ └── text.md │ │ │ ├── canvas │ │ │ │ └── canvas.md │ │ │ ├── forms │ │ │ │ ├── button.md │ │ │ │ ├── checkbox-group.md │ │ │ │ ├── checkbox.md │ │ │ │ ├── editor.md │ │ │ │ ├── form.md │ │ │ │ ├── input.md │ │ │ │ ├── label.md │ │ │ │ ├── picker-view-column.md │ │ │ │ ├── picker-view.md │ │ │ │ ├── picker.md │ │ │ │ ├── radio-group.md │ │ │ │ ├── radio.md │ │ │ │ ├── slider.md │ │ │ │ ├── switch.md │ │ │ │ └── textarea.md │ │ │ ├── maps │ │ │ │ └── map.md │ │ │ ├── media │ │ │ │ ├── audio.md │ │ │ │ ├── camera.md │ │ │ │ ├── image.md │ │ │ │ ├── live-player.md │ │ │ │ ├── live-pusher.md │ │ │ │ └── video.md │ │ │ ├── navig │ │ │ │ ├── Functional-Page-Navigator.md │ │ │ │ └── navigator.md │ │ │ ├── open │ │ │ │ ├── ad.md │ │ │ │ ├── official-account.md │ │ │ │ ├── open-data.md │ │ │ │ ├── others.md │ │ │ │ └── web-view.md │ │ │ └── viewContainer │ │ │ │ ├── cover-image.md │ │ │ │ ├── cover-view.md │ │ │ │ ├── match-media.md │ │ │ │ ├── movable-area.md │ │ │ │ ├── movable-view.md │ │ │ │ ├── scroll-view.md │ │ │ │ ├── swiper-item.md │ │ │ │ ├── swiper.md │ │ │ │ └── view.md │ │ ├── composition.md │ │ ├── config-detail.md │ │ ├── config.md │ │ ├── convert-to-react.md │ │ ├── css-in-js.mdx │ │ ├── css-modules.md │ │ ├── debug-config.md │ │ ├── debug.md │ │ ├── envs-debug.md │ │ ├── envs.md │ │ ├── folder.md │ │ ├── guide.mdx │ │ ├── guides │ │ │ └── index.js │ │ ├── h5.md │ │ ├── hooks.md │ │ ├── html.mdx │ │ ├── hybrid.mdx │ │ ├── implement-note.md │ │ ├── join-in.md │ │ ├── jquery-like.md │ │ ├── mdx │ │ │ └── image-list.tsx │ │ ├── miniprogram-plugin.md │ │ ├── nerv.md │ │ ├── nutui.mdx │ │ ├── optimized.mdx │ │ ├── page-config.md │ │ ├── platform-plugin-base.md │ │ ├── platform-plugin-how.md │ │ ├── platform-plugin-reconciler.md │ │ ├── platform-plugin-template.md │ │ ├── platform-plugin.md │ │ ├── plugin.md │ │ ├── prerender.md │ │ ├── project-config.md │ │ ├── react-devtools.md │ │ ├── react-entry.mdx │ │ ├── react-native-remind.md │ │ ├── react-native.md │ │ ├── react-overall.md │ │ ├── react-page.mdx │ │ ├── react.md │ │ ├── redux.md │ │ ├── render-props.md │ │ ├── report.md │ │ ├── router.md │ │ ├── router.mdx │ │ ├── seowhy.md │ │ ├── size.md │ │ ├── state.md │ │ ├── static-reference.md │ │ ├── taro-in-miniapp.md │ │ ├── taroize-troubleshooting.md │ │ ├── taroize.md │ │ ├── team.md │ │ ├── template.md │ │ ├── treasures.md │ │ ├── use-h5.mdx │ │ ├── vant.mdx │ │ ├── version.md │ │ ├── virtual-list.md │ │ ├── vue-devtools.md │ │ ├── vue-entry.mdx │ │ ├── vue-overall.mdx │ │ ├── vue-page.mdx │ │ ├── vue.md │ │ ├── vue3.md │ │ ├── wxcloudbase.md │ │ └── youshu.md │ ├── version-4.x.json │ └── version-4.x │ │ ├── 58anjuke.md │ │ ├── CONTRIBUTING.md │ │ ├── GETTING-STARTED.md │ │ ├── README.mdx │ │ ├── apis │ │ ├── General.md │ │ ├── about │ │ │ ├── desc.md │ │ │ ├── env.md │ │ │ ├── events.md │ │ │ └── tarocomponent.md │ │ ├── ad │ │ │ ├── InterstitialAd.md │ │ │ ├── RewardedVideoAd.md │ │ │ ├── createInterstitialAd.md │ │ │ └── createRewardedVideoAd.md │ │ ├── alipay │ │ │ └── getOpenUserInfo.md │ │ ├── base │ │ │ ├── arrayBufferToBase64.md │ │ │ ├── base64ToArrayBuffer.md │ │ │ ├── canIUse.md │ │ │ ├── debug │ │ │ │ ├── LogManager.md │ │ │ │ ├── RealtimeLogManager.md │ │ │ │ ├── getLogManager.md │ │ │ │ ├── getRealtimeLogManager.md │ │ │ │ └── setEnableDebug.md │ │ │ ├── env │ │ │ │ └── env.md │ │ │ ├── system │ │ │ │ ├── getSystemInfo.md │ │ │ │ └── getSystemInfoSync.md │ │ │ ├── update │ │ │ │ ├── UpdateManager.md │ │ │ │ └── getUpdateManager.md │ │ │ └── weapp │ │ │ │ ├── app-event │ │ │ │ ├── offAppHide.md │ │ │ │ ├── offAppShow.md │ │ │ │ ├── offAudioInterruptionBegin.md │ │ │ │ ├── offAudioInterruptionEnd.md │ │ │ │ ├── offError.md │ │ │ │ ├── offPageNotFound.md │ │ │ │ ├── onAppHide.md │ │ │ │ ├── onAppShow.md │ │ │ │ ├── onAudioInterruptionBegin.md │ │ │ │ ├── onAudioInterruptionEnd.md │ │ │ │ ├── onError.md │ │ │ │ └── onPageNotFound.md │ │ │ │ └── life-cycle │ │ │ │ └── getLaunchOptionsSync.md │ │ ├── canvas │ │ │ ├── Canvas.md │ │ │ ├── CanvasContext.md │ │ │ ├── CanvasGradient.md │ │ │ ├── Color.md │ │ │ ├── Image.md │ │ │ ├── ImageData.md │ │ │ ├── OffscreenCanvas.md │ │ │ ├── RenderingContext.md │ │ │ ├── canvasGetImageData.md │ │ │ ├── canvasPutImageData.md │ │ │ ├── canvasToTempFilePath.md │ │ │ ├── createCanvasContext.md │ │ │ └── createOffscreenCanvas.md │ │ ├── cloud │ │ │ ├── DB.md │ │ │ └── cloud.md │ │ ├── device │ │ │ ├── accelerometer │ │ │ │ ├── offAccelerometerChange.md │ │ │ │ ├── onAccelerometerChange.md │ │ │ │ ├── startAccelerometer.md │ │ │ │ └── stopAccelerometer.md │ │ │ ├── battery │ │ │ │ ├── getBatteryInfo.md │ │ │ │ └── getBatteryInfoSync.md │ │ │ ├── ble │ │ │ │ ├── closeBLEConnection.md │ │ │ │ ├── createBLEConnection.md │ │ │ │ ├── getBLEDeviceCharacteristics.md │ │ │ │ ├── getBLEDeviceServices.md │ │ │ │ ├── notifyBLECharacteristicValueChange.md │ │ │ │ ├── onBLECharacteristicValueChange.md │ │ │ │ ├── onBLEConnectionStateChange.md │ │ │ │ ├── readBLECharacteristicValue.md │ │ │ │ └── writeBLECharacteristicValue.md │ │ │ ├── bluetooth │ │ │ │ ├── closeBluetoothAdapter.md │ │ │ │ ├── getBluetoothAdapterState.md │ │ │ │ ├── getBluetoothDevices.md │ │ │ │ ├── getConnectedBluetoothDevices.md │ │ │ │ ├── onBluetoothAdapterStateChange.md │ │ │ │ ├── onBluetoothDeviceFound.md │ │ │ │ ├── openBluetoothAdapter.md │ │ │ │ ├── startBluetoothDevicesDiscovery.md │ │ │ │ └── stopBluetoothDevicesDiscovery.md │ │ │ ├── clipboard │ │ │ │ ├── getClipboardData.md │ │ │ │ └── setClipboardData.md │ │ │ ├── compass │ │ │ │ ├── offCompassChange.md │ │ │ │ ├── onCompassChange.md │ │ │ │ ├── startCompass.md │ │ │ │ └── stopCompass.md │ │ │ ├── contact │ │ │ │ └── addPhoneContact.md │ │ │ ├── gyroscope │ │ │ │ ├── offGyroscopeChange.md │ │ │ │ ├── onGyroscopeChange.md │ │ │ │ ├── startGyroscope.md │ │ │ │ └── stopGyroscope.md │ │ │ ├── ibeacon │ │ │ │ ├── IBeaconInfo.md │ │ │ │ ├── getBeacons.md │ │ │ │ ├── offBeaconServiceChange.md │ │ │ │ ├── offBeaconUpdate.md │ │ │ │ ├── onBeaconServiceChange.md │ │ │ │ ├── onBeaconUpdate.md │ │ │ │ ├── startBeaconDiscovery.md │ │ │ │ └── stopBeaconDiscovery.md │ │ │ ├── motion │ │ │ │ ├── offDeviceMotionChange.md │ │ │ │ ├── onDeviceMotionChange.md │ │ │ │ ├── startDeviceMotionListening.md │ │ │ │ └── stopDeviceMotionListening.md │ │ │ ├── network │ │ │ │ ├── getNetworkType.md │ │ │ │ ├── offNetworkStatusChange.md │ │ │ │ └── onNetworkStatusChange.md │ │ │ ├── nfc │ │ │ │ ├── getHCEState.md │ │ │ │ ├── offHCEMessage.md │ │ │ │ ├── onHCEMessage.md │ │ │ │ ├── sendHCEMessage.md │ │ │ │ ├── startHCE.md │ │ │ │ └── stopHCE.md │ │ │ ├── performance │ │ │ │ └── onMemoryWarning.md │ │ │ ├── phone │ │ │ │ └── makePhoneCall.md │ │ │ ├── scan │ │ │ │ └── scancode.md │ │ │ ├── screen │ │ │ │ ├── getScreenBrightness.md │ │ │ │ ├── offUserCaptureScreen.md │ │ │ │ ├── onUserCaptureScreen.md │ │ │ │ ├── setKeepScreenOn.md │ │ │ │ └── setScreenBrightness.md │ │ │ ├── vibrate │ │ │ │ ├── vibrateLong.md │ │ │ │ └── vibrateShort.md │ │ │ └── wifi │ │ │ │ ├── WifiInfo.md │ │ │ │ ├── connectWifi.md │ │ │ │ ├── getConnectedWifi.md │ │ │ │ ├── getWifiList.md │ │ │ │ ├── offGetWifiList.md │ │ │ │ ├── offWifiConnected.md │ │ │ │ ├── onGetWifiList.md │ │ │ │ ├── onWifiConnected.md │ │ │ │ ├── setWifiList.md │ │ │ │ ├── startWifi.md │ │ │ │ └── stopWifi.md │ │ ├── ext │ │ │ ├── getExtConfig.md │ │ │ └── getExtConfigSync.md │ │ ├── files │ │ │ ├── FileSystemManager.md │ │ │ ├── Stats.md │ │ │ ├── getFileInfo.md │ │ │ ├── getFileSystemManager.md │ │ │ ├── getSavedFileInfo.md │ │ │ ├── getSavedFileList.md │ │ │ ├── openDocument.md │ │ │ ├── removeSavedFile.md │ │ │ └── saveFile.md │ │ ├── framework │ │ │ ├── App.md │ │ │ ├── Page.md │ │ │ ├── getApp.md │ │ │ └── getCurrentPages.md │ │ ├── location │ │ │ ├── chooseLocation.md │ │ │ ├── getLocation.md │ │ │ ├── offLocationChange.md │ │ │ ├── onLocationChange.md │ │ │ ├── openLocation.md │ │ │ ├── startLocationUpdate.md │ │ │ ├── startLocationUpdateBackground.md │ │ │ └── stopLocationUpdate.md │ │ ├── media │ │ │ ├── audio │ │ │ │ ├── AudioContext.md │ │ │ │ ├── InnerAudioContext.md │ │ │ │ ├── createAudioContext.md │ │ │ │ ├── createInnerAudioContext.md │ │ │ │ ├── getAvailableAudioSources.md │ │ │ │ ├── pauseVoice.md │ │ │ │ ├── playVoice.md │ │ │ │ ├── setInnerAudioOption.md │ │ │ │ └── stopVoice.md │ │ │ ├── background-audio │ │ │ │ ├── BackgroundAudioManager.md │ │ │ │ ├── getBackgroundAudioManager.md │ │ │ │ ├── getBackgroundAudioPlayerState.md │ │ │ │ ├── onBackgroundAudioPause.md │ │ │ │ ├── onBackgroundAudioPlay.md │ │ │ │ ├── onBackgroundAudioStop.md │ │ │ │ ├── pauseBackgroundAudio.md │ │ │ │ ├── playBackgroundAudio.md │ │ │ │ ├── seekBackgroundAudio.md │ │ │ │ └── stopBackgroundAudio.md │ │ │ ├── camera │ │ │ │ ├── CameraContext.md │ │ │ │ ├── CameraFrameListener.md │ │ │ │ └── createCameraContext.md │ │ │ ├── editor │ │ │ │ └── EditorContext.md │ │ │ ├── image │ │ │ │ ├── chooseImage.md │ │ │ │ ├── chooseMedia.md │ │ │ │ ├── chooseMessageFile.md │ │ │ │ ├── compressImage.md │ │ │ │ ├── getImageInfo.md │ │ │ │ ├── previewImage.md │ │ │ │ └── saveImageToPhotosAlbum.md │ │ │ ├── live │ │ │ │ ├── LivePlayerContext.md │ │ │ │ ├── LivePusherContext.md │ │ │ │ ├── createLivePlayerContext.md │ │ │ │ └── createLivePusherContext.md │ │ │ ├── map │ │ │ │ ├── MapContext.md │ │ │ │ └── createMapContext.md │ │ │ ├── recorder │ │ │ │ ├── RecorderManager.md │ │ │ │ ├── getRecorderManager.md │ │ │ │ ├── startRecord.md │ │ │ │ └── stopRecord.md │ │ │ ├── video-processing │ │ │ │ ├── MediaContainer.md │ │ │ │ ├── MediaTrack.md │ │ │ │ └── createMediaContainer.md │ │ │ └── video │ │ │ │ ├── VideoContext.md │ │ │ │ ├── chooseVideo.md │ │ │ │ ├── createVideoContext.md │ │ │ │ └── saveVideoToPhotosAlbum.md │ │ ├── network │ │ │ ├── download │ │ │ │ ├── DownloadTask.md │ │ │ │ └── downloadFile.md │ │ │ ├── mdns │ │ │ │ ├── offLocalServiceDiscoveryStop.md │ │ │ │ ├── offLocalServiceFound.md │ │ │ │ ├── offLocalServiceLost.md │ │ │ │ ├── offLocalServiceResolveFail.md │ │ │ │ ├── onLocalServiceDiscoveryStop.md │ │ │ │ ├── onLocalServiceFound.md │ │ │ │ ├── onLocalServiceLost.md │ │ │ │ ├── onLocalServiceResolveFail.md │ │ │ │ ├── startLocalServiceDiscovery.md │ │ │ │ └── stopLocalServiceDiscovery.md │ │ │ ├── request │ │ │ │ ├── RequestTask.md │ │ │ │ ├── addInterceptor.md │ │ │ │ └── request.md │ │ │ ├── udp │ │ │ │ ├── UDPSocket.md │ │ │ │ └── createUDPSocket.md │ │ │ ├── upload │ │ │ │ ├── UploadTask.md │ │ │ │ └── uploadFile.md │ │ │ └── webSocket │ │ │ │ ├── SocketTask.md │ │ │ │ ├── closeSocket.md │ │ │ │ ├── connectSocket.md │ │ │ │ ├── onSocketClose.md │ │ │ │ ├── onSocketError.md │ │ │ │ ├── onSocketMessage.md │ │ │ │ ├── onSocketOpen.md │ │ │ │ └── sendSocketMessage.md │ │ ├── open-api │ │ │ ├── account │ │ │ │ └── getAccountInfoSync.md │ │ │ ├── address │ │ │ │ └── chooseAddress.md │ │ │ ├── authorize │ │ │ │ └── authorize.md │ │ │ ├── card │ │ │ │ ├── addCard.md │ │ │ │ ├── card.md │ │ │ │ └── openCard.md │ │ │ ├── data-analysis │ │ │ │ └── reportAnalytics.md │ │ │ ├── facial │ │ │ │ ├── checkIsSupportFacialRecognition.md │ │ │ │ ├── startFacialRecognitionVerify.md │ │ │ │ └── startFacialRecognitionVerifyAndUploadVideo.md │ │ │ ├── invoice │ │ │ │ ├── chooseInvoice.md │ │ │ │ └── chooseInvoiceTitle.md │ │ │ ├── login │ │ │ │ ├── checkSession.md │ │ │ │ └── login.md │ │ │ ├── navigate │ │ │ │ ├── navigateBackMiniProgram.md │ │ │ │ └── navigateToMiniProgram.md │ │ │ ├── payment │ │ │ │ ├── faceVerifyForPay.md │ │ │ │ └── requestPayment.md │ │ │ ├── report │ │ │ │ └── reportMonitor.md │ │ │ ├── settings │ │ │ │ ├── AuthSetting.md │ │ │ │ ├── getSetting.md │ │ │ │ └── openSetting.md │ │ │ ├── soter │ │ │ │ ├── checkIsSoterEnrolledInDevice.md │ │ │ │ ├── checkIsSupportSoterAuthentication.md │ │ │ │ └── startSoterAuthentication.md │ │ │ ├── subscribe-message │ │ │ │ └── requestSubscribeMessage.md │ │ │ ├── user-info │ │ │ │ ├── UserInfo.md │ │ │ │ ├── getUserInfo.md │ │ │ │ └── getUserProfile.md │ │ │ └── werun │ │ │ │ └── getWeRunData.md │ │ ├── route │ │ │ ├── EventChannel.md │ │ │ ├── navigateBack.md │ │ │ ├── navigateTo.md │ │ │ ├── reLaunch.md │ │ │ ├── redirectTo.md │ │ │ └── switchTab.md │ │ ├── share │ │ │ ├── getShareInfo.md │ │ │ ├── hideShareMenu.md │ │ │ ├── showShareMenu.md │ │ │ └── updateShareMenu.md │ │ ├── storage │ │ │ ├── background-fetch │ │ │ │ ├── getBackgroundFetchData.md │ │ │ │ ├── getBackgroundFetchToken.md │ │ │ │ ├── onBackgroundFetchData.md │ │ │ │ └── setBackgroundFetchToken.md │ │ │ ├── clearStorage.md │ │ │ ├── clearStorageSync.md │ │ │ ├── getStorage.md │ │ │ ├── getStorageInfo.md │ │ │ ├── getStorageInfoSync.md │ │ │ ├── getStorageSync.md │ │ │ ├── removeStorage.md │ │ │ ├── removeStorageSync.md │ │ │ ├── setStorage.md │ │ │ └── setStorageSync.md │ │ ├── swan │ │ │ └── setPageInfo.md │ │ ├── ui │ │ │ ├── animation │ │ │ │ ├── Animation.md │ │ │ │ └── createAnimation.md │ │ │ ├── background │ │ │ │ ├── setBackgroundColor.md │ │ │ │ └── setBackgroundTextStyle.md │ │ │ ├── custom-component │ │ │ │ └── nextTick.md │ │ │ ├── fonts │ │ │ │ └── loadFontFace.md │ │ │ ├── interaction │ │ │ │ ├── hideLoading.md │ │ │ │ ├── hideToast.md │ │ │ │ ├── showActionSheet.md │ │ │ │ ├── showLoading.md │ │ │ │ ├── showModal.md │ │ │ │ └── showToast.md │ │ │ ├── keyboard │ │ │ │ ├── getSelectedTextRange.md │ │ │ │ ├── hideKeyboard.md │ │ │ │ ├── offKeyboardHeightChange.md │ │ │ │ └── onKeyboardHeightChange.md │ │ │ ├── menu │ │ │ │ └── getMenuButtonBoundingClientRect.md │ │ │ ├── navigation-bar │ │ │ │ ├── hideHomeButton.md │ │ │ │ ├── hideNavigationBarLoading.md │ │ │ │ ├── setNavigationBarColor.md │ │ │ │ ├── setNavigationBarTitle.md │ │ │ │ └── showNavigationBarLoading.md │ │ │ ├── pull-down-refresh │ │ │ │ ├── startPullDownRefresh.md │ │ │ │ └── stopPullDownRefresh.md │ │ │ ├── scroll │ │ │ │ └── pageScrollTo.md │ │ │ ├── sticky │ │ │ │ └── setTopBarText.md │ │ │ ├── tab-bar │ │ │ │ ├── hideTabBar.md │ │ │ │ ├── hideTabBarRedDot.md │ │ │ │ ├── removeTabBarBadge.md │ │ │ │ ├── setTabBarBadge.md │ │ │ │ ├── setTabBarItem.md │ │ │ │ ├── setTabBarStyle.md │ │ │ │ ├── showTabBar.md │ │ │ │ └── showTabBarRedDot.md │ │ │ └── window │ │ │ │ ├── offWindowResize.md │ │ │ │ └── onWindowResize.md │ │ ├── worker │ │ │ ├── Worker.md │ │ │ └── createWorker.md │ │ └── wxml │ │ │ ├── IntersectionObserver.md │ │ │ ├── NodesRef.md │ │ │ ├── SelectorQuery.md │ │ │ ├── createIntersectionObserver.md │ │ │ └── createSelectorQuery.md │ │ ├── app-config.md │ │ ├── babel-config.md │ │ ├── best-practice.md │ │ ├── children.md │ │ ├── cli.md │ │ ├── codebase-overview.md │ │ ├── come-from-miniapp.mdx │ │ ├── communicate.md │ │ ├── components-desc.md │ │ ├── components │ │ ├── base │ │ │ ├── icon.md │ │ │ ├── progress.md │ │ │ ├── rich-text.md │ │ │ └── text.md │ │ ├── canvas │ │ │ └── canvas.md │ │ ├── forms │ │ │ ├── button.md │ │ │ ├── checkbox-group.md │ │ │ ├── checkbox.md │ │ │ ├── editor.md │ │ │ ├── form.md │ │ │ ├── input.md │ │ │ ├── label.md │ │ │ ├── picker-view-column.md │ │ │ ├── picker-view.md │ │ │ ├── picker.md │ │ │ ├── radio-group.md │ │ │ ├── radio.md │ │ │ ├── slider.md │ │ │ ├── switch.md │ │ │ └── textarea.md │ │ ├── maps │ │ │ └── map.md │ │ ├── media │ │ │ ├── audio.md │ │ │ ├── camera.md │ │ │ ├── image.md │ │ │ ├── live-player.md │ │ │ ├── live-pusher.md │ │ │ └── video.md │ │ ├── navig │ │ │ ├── Functional-Page-Navigator.md │ │ │ └── navigator.md │ │ ├── open │ │ │ ├── ad.md │ │ │ ├── official-account.md │ │ │ ├── open-data.md │ │ │ ├── others.md │ │ │ └── web-view.md │ │ └── viewContainer │ │ │ ├── cover-image.md │ │ │ ├── cover-view.md │ │ │ ├── match-media.md │ │ │ ├── movable-area.md │ │ │ ├── movable-view.md │ │ │ ├── scroll-view.md │ │ │ ├── swiper-item.md │ │ │ ├── swiper.md │ │ │ └── view.md │ │ ├── composition.md │ │ ├── config-detail.md │ │ ├── config.md │ │ ├── convert-to-react.md │ │ ├── css-in-js.mdx │ │ ├── css-modules.md │ │ ├── debug-config.md │ │ ├── debug.md │ │ ├── envs-debug.md │ │ ├── envs.md │ │ ├── folder.md │ │ ├── guide.mdx │ │ ├── guides │ │ └── index.js │ │ ├── h5.md │ │ ├── hooks.md │ │ ├── html.mdx │ │ ├── hybrid.mdx │ │ ├── implement-note.md │ │ ├── join-in.md │ │ ├── jquery-like.md │ │ ├── mdx │ │ └── image-list.tsx │ │ ├── miniprogram-plugin.md │ │ ├── nerv.md │ │ ├── nutui.mdx │ │ ├── optimized.mdx │ │ ├── page-config.md │ │ ├── platform-plugin-base.md │ │ ├── platform-plugin-how.md │ │ ├── platform-plugin-reconciler.md │ │ ├── platform-plugin-template.md │ │ ├── platform-plugin.md │ │ ├── plugin.md │ │ ├── prerender.md │ │ ├── project-config.md │ │ ├── react-devtools.md │ │ ├── react-entry.mdx │ │ ├── react-native-remind.md │ │ ├── react-native.md │ │ ├── react-overall.md │ │ ├── react-page.mdx │ │ ├── react.md │ │ ├── redux.md │ │ ├── render-props.md │ │ ├── report.md │ │ ├── router.md │ │ ├── router.mdx │ │ ├── seowhy.md │ │ ├── size.md │ │ ├── state.md │ │ ├── static-reference.md │ │ ├── taro-in-miniapp.md │ │ ├── taroize-troubleshooting.md │ │ ├── taroize.md │ │ ├── team.md │ │ ├── template.md │ │ ├── treasures.md │ │ ├── use-h5.mdx │ │ ├── vant.mdx │ │ ├── version.md │ │ ├── virtual-list.md │ │ ├── vue-devtools.md │ │ ├── vue-entry.mdx │ │ ├── vue-overall.mdx │ │ ├── vue-page.mdx │ │ ├── vue.md │ │ ├── vue3.md │ │ ├── wxcloudbase.md │ │ └── youshu.md │ └── docusaurus-theme-classic │ ├── footer.json │ └── navbar.json ├── package.json ├── packages ├── taro-components │ └── types │ │ ├── Ad.d.ts │ │ ├── AdCustom.d.ts │ │ ├── AnimationVideo.d.ts │ │ ├── AnimationView.d.ts │ │ ├── ArCamera.d.ts │ │ ├── Audio.d.ts │ │ ├── AwemeData.d.ts │ │ ├── Block.d.ts │ │ ├── Button.d.ts │ │ ├── Camera.d.ts │ │ ├── Canvas.d.ts │ │ ├── ChannelLive.d.ts │ │ ├── ChannelVideo.d.ts │ │ ├── Checkbox.d.ts │ │ ├── CheckboxGroup.d.ts │ │ ├── CommentDetail.d.ts │ │ ├── CommentList.d.ts │ │ ├── ContactButton.d.ts │ │ ├── CoverImage.d.ts │ │ ├── CoverView.d.ts │ │ ├── CustomWrapper.d.ts │ │ ├── DraggableSheet.d.ts │ │ ├── Editor.d.ts │ │ ├── FollowSwan.d.ts │ │ ├── Form.d.ts │ │ ├── FunctionalPageNavigator.d.ts │ │ ├── GridBuilder.d.ts │ │ ├── GridView.d.ts │ │ ├── Icon.d.ts │ │ ├── Image.d.ts │ │ ├── InlinePaymentPanel.d.ts │ │ ├── Input.d.ts │ │ ├── KeyboardAccessory.d.ts │ │ ├── Label.d.ts │ │ ├── Lifestyle.d.ts │ │ ├── Like.d.ts │ │ ├── ListBuilder.d.ts │ │ ├── ListView.d.ts │ │ ├── LivePlayer.d.ts │ │ ├── LivePusher.d.ts │ │ ├── Login.d.ts │ │ ├── Lottie.d.ts │ │ ├── Map.d.ts │ │ ├── MatchMedia.d.ts │ │ ├── MovableArea.d.ts │ │ ├── MovableView.d.ts │ │ ├── NativeSlot.d.ts │ │ ├── NavigationBar.d.ts │ │ ├── Navigator.d.ts │ │ ├── NestedScrollBody.d.ts │ │ ├── NestedScrollHeader.d.ts │ │ ├── OfficialAccount.d.ts │ │ ├── OpenContainer.d.ts │ │ ├── OpenData.d.ts │ │ ├── PageContainer.d.ts │ │ ├── PageMeta.d.ts │ │ ├── Picker.d.ts │ │ ├── PickerView.d.ts │ │ ├── PickerViewColumn.d.ts │ │ ├── Progress.d.ts │ │ ├── PullToRefresh.d.ts │ │ ├── Radio.d.ts │ │ ├── RadioGroup.d.ts │ │ ├── RichText.d.ts │ │ ├── RootPortal.d.ts │ │ ├── RtcRoom.d.ts │ │ ├── RtcRoomItem.d.ts │ │ ├── Script.d.ts │ │ ├── ScrollView.d.ts │ │ ├── ShareElement.d.ts │ │ ├── Slider.d.ts │ │ ├── Slot.d.ts │ │ ├── Snapshot.d.ts │ │ ├── Span.d.ts │ │ ├── StickyHeader.d.ts │ │ ├── StickySection.d.ts │ │ ├── Swiper.d.ts │ │ ├── SwiperItem.d.ts │ │ ├── Switch.d.ts │ │ ├── TabItem.d.ts │ │ ├── Tabs.d.ts │ │ ├── Text.d.ts │ │ ├── Textarea.d.ts │ │ ├── Video.d.ts │ │ ├── View.d.ts │ │ ├── VoipRoom.d.ts │ │ ├── WebView.d.ts │ │ ├── common.d.ts │ │ ├── event.d.ts │ │ ├── gesture │ │ ├── DoubleTapGestureHandler.d.ts │ │ ├── ForcePressGestureHandler.d.ts │ │ ├── HorizontalDragGestureHandler.d.ts │ │ ├── LongPressGestureHandler.d.ts │ │ ├── PanGestureHandler.d.ts │ │ ├── ScaleGestureHandler.d.ts │ │ ├── TapGestureHandler.d.ts │ │ ├── VerticalDragGestureHandler.d.ts │ │ └── common.d.ts │ │ ├── global.d.ts │ │ ├── index.d.ts │ │ ├── index.solid.d.ts │ │ ├── index.vue3.d.ts │ │ └── props.d.ts └── taro │ └── types │ ├── api │ ├── ad │ │ └── index.d.ts │ ├── ai │ │ ├── face.d.ts │ │ ├── inference.d.ts │ │ └── visionkit.d.ts │ ├── alipay │ │ └── index.d.ts │ ├── base │ │ ├── crypto.d.ts │ │ ├── debug.d.ts │ │ ├── env.d.ts │ │ ├── index.d.ts │ │ ├── performance.d.ts │ │ ├── system.d.ts │ │ ├── update.d.ts │ │ └── weapp │ │ │ ├── app-event.d.ts │ │ │ └── life-cycle.d.ts │ ├── canvas │ │ └── index.d.ts │ ├── cloud │ │ └── index.d.ts │ ├── data-analysis │ │ └── index.d.ts │ ├── device │ │ ├── accelerometer.d.ts │ │ ├── accessibility.d.ts │ │ ├── battery.d.ts │ │ ├── bluetooth-ble.d.ts │ │ ├── bluetooth-peripheral.d.ts │ │ ├── bluetooth.d.ts │ │ ├── calendar.d.ts │ │ ├── clipboard.d.ts │ │ ├── compass.d.ts │ │ ├── contact.d.ts │ │ ├── gyroscope.d.ts │ │ ├── iBeacon.d.ts │ │ ├── keyboard.d.ts │ │ ├── memory.d.ts │ │ ├── motion.d.ts │ │ ├── network.d.ts │ │ ├── nfc.d.ts │ │ ├── phone.d.ts │ │ ├── scan.d.ts │ │ ├── screen.d.ts │ │ ├── sms.d.ts │ │ ├── vibrate.d.ts │ │ └── wifi.d.ts │ ├── ext │ │ └── index.d.ts │ ├── files │ │ └── index.d.ts │ ├── framework │ │ └── index.d.ts │ ├── location │ │ └── index.d.ts │ ├── media │ │ ├── audio.d.ts │ │ ├── background-audio.d.ts │ │ ├── camera.d.ts │ │ ├── editor.d.ts │ │ ├── image.d.ts │ │ ├── live.d.ts │ │ ├── map.d.ts │ │ ├── media-recorder.d.ts │ │ ├── recorder.d.ts │ │ ├── video-decoder.d.ts │ │ ├── video-processing.d.ts │ │ ├── video.d.ts │ │ └── voip.d.ts │ ├── navigate │ │ └── index.d.ts │ ├── network │ │ ├── download.d.ts │ │ ├── mdns.d.ts │ │ ├── request.d.ts │ │ ├── tcp.d.ts │ │ ├── udp.d.ts │ │ ├── upload.d.ts │ │ └── websocket.d.ts │ ├── open-api │ │ ├── account.d.ts │ │ ├── address.d.ts │ │ ├── authorize.d.ts │ │ ├── card.d.ts │ │ ├── channels.d.ts │ │ ├── customer-service.d.ts │ │ ├── device-voip.d.ts │ │ ├── facial.d.ts │ │ ├── favorites.d.ts │ │ ├── group.d.ts │ │ ├── invoice.d.ts │ │ ├── license-plate.d.ts │ │ ├── login.d.ts │ │ ├── my-miniprogram.d.ts │ │ ├── privacy.d.ts │ │ ├── redpackage.d.ts │ │ ├── settings.d.ts │ │ ├── soter.d.ts │ │ ├── sticker.d.ts │ │ ├── subscribe-message.d.ts │ │ ├── user-info.d.ts │ │ └── werun.d.ts │ ├── payment │ │ └── index.d.ts │ ├── qq │ │ └── index.d.ts │ ├── route │ │ └── index.d.ts │ ├── share │ │ └── index.d.ts │ ├── skyline │ │ └── index.d.ts │ ├── storage │ │ ├── background-fetch.d.ts │ │ ├── cache-manager.d.ts │ │ └── index.d.ts │ ├── swan │ │ ├── bookshelf.d.ts │ │ ├── download-package.d.ts │ │ ├── index.d.ts │ │ └── pay.d.ts │ ├── taro.extend.d.ts │ ├── taro.hooks.d.ts │ ├── ui │ │ ├── animation.d.ts │ │ ├── background.d.ts │ │ ├── custom-component.d.ts │ │ ├── fonts.d.ts │ │ ├── interaction.d.ts │ │ ├── menu.d.ts │ │ ├── navigation-bar.d.ts │ │ ├── pull-down-refresh.d.ts │ │ ├── scroll.d.ts │ │ ├── sticky.d.ts │ │ ├── tab-bar.d.ts │ │ └── window.d.ts │ ├── worker │ │ └── index.d.ts │ └── wxml │ │ └── index.d.ts │ ├── compile │ ├── compiler.d.ts │ ├── config │ │ ├── h5.d.ts │ │ ├── harmony.d.ts │ │ ├── index.d.ts │ │ ├── manifest.d.ts │ │ ├── mini.d.ts │ │ ├── plugin.d.ts │ │ ├── project.d.ts │ │ ├── rn.d.ts │ │ └── util.d.ts │ ├── hooks.d.ts │ ├── index.d.ts │ └── viteCompilerContext.d.ts │ ├── global.d.ts │ ├── index.d.ts │ ├── taro.api.d.ts │ ├── taro.component.d.ts │ ├── taro.config.d.ts │ ├── taro.lifecycle.d.ts │ └── taro.runtime.d.ts ├── pnpm-lock.yaml ├── scripts ├── docs.ts ├── notion │ ├── common.ts │ ├── github.ts │ ├── sync.ts │ ├── update-utils.ts │ └── update.ts ├── output │ ├── api.ts │ ├── components.ts │ ├── index.ts │ └── json.ts ├── parser │ ├── ast.ts │ ├── index.ts │ ├── taro-env.ts │ └── utils │ │ └── index.ts ├── test-file.ts ├── tsconfig.json └── write.ts ├── sidebars.js ├── src ├── components │ └── affix-contact │ │ ├── index.css │ │ └── index.tsx ├── pages │ ├── canIUse │ │ ├── ascf.json │ │ ├── index.css │ │ └── index.js │ ├── index.js │ ├── showcase.js │ └── versions.js ├── sw.js └── theme │ ├── DocVersionSuggestions.js │ ├── Footer.js │ ├── NotFound.js │ ├── hotjar.js │ ├── navbar.module.css │ └── tongji.js ├── static ├── css │ ├── custom.css │ └── platform.css ├── data │ └── contributors.json ├── icons │ └── index.js ├── img │ ├── favicon.ico │ ├── favicon │ │ └── favicon.ico │ ├── framework │ │ ├── nerv.png │ │ ├── preact.png │ │ ├── react.png │ │ ├── svelte.png │ │ └── vue.png │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-196x196.png │ │ ├── icon-384x384.png │ │ ├── icon-48x48.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ ├── icon-96x96.png │ │ └── maskable_icon.png │ ├── logo-taro.png │ ├── o2logo.png │ ├── platform │ │ ├── alipay.png │ │ ├── ascf.png │ │ ├── ding-talk.png │ │ ├── h5.png │ │ ├── harmony.png │ │ ├── harmonyHybrid.png │ │ ├── jd.png │ │ ├── kuaishou.png │ │ ├── lark.png │ │ ├── qq.png │ │ ├── quickapp.png │ │ ├── rn.png │ │ ├── swan.png │ │ ├── tt.png │ │ ├── weapp.png │ │ └── wework.png │ ├── svg │ │ ├── affix-contact-close.svg │ │ └── affix-contact-msg.svg │ ├── taro-logo_180.png │ ├── taro-logo_400.png │ ├── taroharmonyhybrid.jpg │ ├── team-structure.png │ └── update-appid.png └── manifest.json ├── tsconfig.json ├── typings ├── github.d.ts ├── modules.d.ts └── notion.d.ts ├── versioned_docs ├── version-1.x │ ├── CONTRIBUTING.md │ ├── GETTING-STARTED.md │ ├── README.md │ ├── apis │ │ ├── about │ │ │ ├── desc.md │ │ │ ├── env.md │ │ │ ├── events.md │ │ │ └── tarocomponent.md │ │ ├── device │ │ │ ├── accelerometer │ │ │ │ ├── onAccelerometerChange.md │ │ │ │ ├── startAccelerometer.md │ │ │ │ └── stopAccelerometer.md │ │ │ ├── ble │ │ │ │ ├── closeBLEConnection.md │ │ │ │ ├── createBLEConnection.md │ │ │ │ ├── getBLEDeviceCharacteristics.md │ │ │ │ ├── getBLEDeviceServices.md │ │ │ │ ├── notifyBLECharacteristicValueChange.md │ │ │ │ ├── onBLECharacteristicValueChange.md │ │ │ │ ├── onBLEConnectionStateChange.md │ │ │ │ ├── readBLECharacteristicValue.md │ │ │ │ └── writeBLECharacteristicValue.md │ │ │ ├── bluetooth │ │ │ │ ├── closeBluetoothAdapter.md │ │ │ │ ├── getBluetoothAdapterState.md │ │ │ │ ├── getBluetoothDevices.md │ │ │ │ ├── getConnectedBluetoothDevices.md │ │ │ │ ├── onBluetoothAdapterStateChange.md │ │ │ │ ├── onBluetoothDeviceFound.md │ │ │ │ ├── openBluetoothAdapter.md │ │ │ │ ├── startBluetoothDevicesDiscovery.md │ │ │ │ └── stopBluetoothDevicesDiscovery.md │ │ │ ├── brightness │ │ │ │ ├── getScreenBrightness.md │ │ │ │ ├── setKeepScreenOn.md │ │ │ │ └── setScreenBrightness.md │ │ │ ├── clipboard │ │ │ │ ├── getClipboardData.md │ │ │ │ └── setClipboardData.md │ │ │ ├── compass │ │ │ │ ├── onCompassChange.md │ │ │ │ ├── startCompass.md │ │ │ │ └── stopCompass.md │ │ │ ├── contacts │ │ │ │ └── addPhoneContact.md │ │ │ ├── deviceMotion │ │ │ │ ├── onDeviceMotionChange.md │ │ │ │ ├── startDeviceMotionListening.md │ │ │ │ └── stopDeviceMotionListening.md │ │ │ ├── ibeacon │ │ │ │ ├── getBeacons.md │ │ │ │ ├── onBeaconServiceChange.md │ │ │ │ ├── onBeaconUpdate.md │ │ │ │ ├── startBeaconDiscovery.md │ │ │ │ └── stopBeaconDiscovery.md │ │ │ ├── netstat │ │ │ │ ├── getNetworkType.md │ │ │ │ └── onNetworkStatusChange.md │ │ │ ├── nfc │ │ │ │ ├── getHCEState.md │ │ │ │ ├── onHCEMessage.md │ │ │ │ ├── sendHCEMessage.md │ │ │ │ ├── startHCE.md │ │ │ │ └── stopHCE.md │ │ │ ├── phone │ │ │ │ └── makePhoneCall.md │ │ │ ├── scancode │ │ │ │ └── scancode.md │ │ │ ├── screenshot │ │ │ │ └── onUserCaptureScreen.md │ │ │ ├── systeminfo │ │ │ │ ├── canIUse.md │ │ │ │ ├── getSystemInfo.md │ │ │ │ └── getSystemInfoSync.md │ │ │ ├── vibrate │ │ │ │ ├── vibrateLong.md │ │ │ │ └── vibrateShort.md │ │ │ └── wifi │ │ │ │ ├── connectWifi.md │ │ │ │ ├── getConnectedWifi.md │ │ │ │ ├── getWifiList.md │ │ │ │ ├── onGetWifiList.md │ │ │ │ ├── onWifiConnected.md │ │ │ │ ├── setWifiList.md │ │ │ │ ├── startWifi.md │ │ │ │ └── stopWifi.md │ │ ├── extend-apis │ │ │ ├── arrayBufferToBase64.md │ │ │ └── base64ToArrayBuffer.md │ │ ├── files │ │ │ ├── getFileInfo.md │ │ │ ├── getSavedFileInfo.md │ │ │ ├── getSavedFileList.md │ │ │ ├── openDocument.md │ │ │ ├── removeSavedFile.md │ │ │ └── saveFile.md │ │ ├── interface │ │ │ ├── animation │ │ │ │ └── createAnimation.md │ │ │ ├── canvas │ │ │ │ ├── canvasGetImageData.md │ │ │ │ ├── canvasPutImageData.md │ │ │ │ ├── canvasToTempFilePath.md │ │ │ │ ├── createCanvasContext.md │ │ │ │ ├── createContext.md │ │ │ │ └── drawCanvas.md │ │ │ ├── interactives │ │ │ │ ├── hideLoading.md │ │ │ │ ├── hideToast.md │ │ │ │ ├── showActionSheet.md │ │ │ │ ├── showLoading.md │ │ │ │ ├── showModal.md │ │ │ │ └── showToast.md │ │ │ ├── navigation │ │ │ │ ├── getCurrentPages.md │ │ │ │ ├── navigateBack.md │ │ │ │ ├── navigateTo.md │ │ │ │ ├── reLaunch.md │ │ │ │ ├── redirectTo.md │ │ │ │ └── switchTab.md │ │ │ ├── navigationbar │ │ │ │ ├── hideNavigationBarLoading.md │ │ │ │ ├── setNavigationBarColor.md │ │ │ │ ├── setNavigationBarTitle.md │ │ │ │ └── showNavigationBarLoading.md │ │ │ ├── pagescroll │ │ │ │ └── pageScrollTo.md │ │ │ ├── pulldownrefresh │ │ │ │ ├── startPullDownRefresh.md │ │ │ │ └── stopPullDownRefresh.md │ │ │ ├── tabbar │ │ │ │ ├── hideTabBar.md │ │ │ │ ├── hideTabBarRedDot.md │ │ │ │ ├── removeTabBarBadge.md │ │ │ │ ├── setTabBarBadge.md │ │ │ │ ├── setTabBarItem.md │ │ │ │ ├── setTabBarStyle.md │ │ │ │ ├── showTabBar.md │ │ │ │ └── showTabBarRedDot.md │ │ │ ├── topbar │ │ │ │ └── setTopBarText.md │ │ │ ├── window │ │ │ │ ├── offWindowResize.md │ │ │ │ └── onWindowResize.md │ │ │ └── wxml │ │ │ │ ├── createIntersectionObserver.md │ │ │ │ ├── createSelectorQuery.md │ │ │ │ ├── nodesRef_boundingClientRect.md │ │ │ │ ├── nodesRef_fields.md │ │ │ │ ├── nodesRef_scrollOffset.md │ │ │ │ ├── selectorQuery_exec.md │ │ │ │ ├── selectorQuery_in.md │ │ │ │ ├── selectorQuery_select.md │ │ │ │ ├── selectorQuery_selectAll.md │ │ │ │ └── selectorQuery_selectViewport.md │ │ ├── location │ │ │ ├── chooseLocation.md │ │ │ ├── getLocation.md │ │ │ └── openLocation.md │ │ ├── multimedia │ │ │ ├── audio │ │ │ │ ├── createAudioContext.md │ │ │ │ ├── createInnerAudioContext.md │ │ │ │ ├── pauseVoice.md │ │ │ │ ├── playVoice.md │ │ │ │ └── stopVoice.md │ │ │ ├── backgroundaudio │ │ │ │ ├── getBackgroundAudioManager.md │ │ │ │ ├── getBackgroundAudioPlayerState.md │ │ │ │ ├── onBackgroundAudioPause.md │ │ │ │ ├── onBackgroundAudioPlay.md │ │ │ │ ├── onBackgroundAudioStop.md │ │ │ │ ├── pauseBackgroundAudio.md │ │ │ │ ├── playBackgroundAudio.md │ │ │ │ ├── seekBackgroundAudio.md │ │ │ │ └── stopBackgroundAudio.md │ │ │ ├── camera │ │ │ │ └── createCameraContext.md │ │ │ ├── images │ │ │ │ ├── chooseImage.md │ │ │ │ ├── getImageInfo.md │ │ │ │ ├── previewImage.md │ │ │ │ └── saveImageToPhotosAlbum.md │ │ │ ├── map │ │ │ │ └── createMapContext.md │ │ │ ├── recording │ │ │ │ ├── startRecord.md │ │ │ │ └── stopRecord.md │ │ │ └── video │ │ │ │ ├── chooseVideo.md │ │ │ │ ├── createVideoContext.md │ │ │ │ └── saveVideoToPhotosAlbum.md │ │ ├── network │ │ │ ├── fileTransfer │ │ │ │ ├── downloadFile.md │ │ │ │ └── uploadFile.md │ │ │ ├── request │ │ │ │ ├── addInterceptor.md │ │ │ │ └── request.md │ │ │ └── socket │ │ │ │ ├── SocketTask.md │ │ │ │ ├── closeSocket.md │ │ │ │ ├── connectSocket.md │ │ │ │ ├── onSocketClose.md │ │ │ │ ├── onSocketError.md │ │ │ │ ├── onSocketMessage.md │ │ │ │ ├── onSocketOpen.md │ │ │ │ └── sendSocketMessage.md │ │ ├── open-api │ │ │ ├── address │ │ │ │ └── chooseAddress.md │ │ │ ├── auth │ │ │ │ └── authorize.md │ │ │ ├── bioauth │ │ │ │ ├── checkIsSoterEnrolledInDevice.md │ │ │ │ ├── checkIsSupportSoterAuthentication.md │ │ │ │ └── startSoterAuthentication.md │ │ │ ├── card │ │ │ │ ├── addCard.md │ │ │ │ ├── card.md │ │ │ │ └── openCard.md │ │ │ ├── invoice │ │ │ │ ├── chooseInvoice.md │ │ │ │ └── chooseInvoiceTitle.md │ │ │ ├── login │ │ │ │ ├── checkSession.md │ │ │ │ └── login.md │ │ │ ├── payment │ │ │ │ ├── faceVerifyForPay.md │ │ │ │ └── requestPayment.md │ │ │ ├── redirect │ │ │ │ ├── navigateBackMiniProgram.md │ │ │ │ └── navigateToMiniProgram.md │ │ │ ├── settings │ │ │ │ ├── getSetting.md │ │ │ │ └── openSetting.md │ │ │ ├── userinfo │ │ │ │ └── getUserInfo.md │ │ │ └── werun │ │ │ │ └── getWeRunData.md │ │ ├── storage │ │ │ ├── clearStorage.md │ │ │ ├── clearStorageSync.md │ │ │ ├── getStorage.md │ │ │ ├── getStorageInfo.md │ │ │ ├── getStorageInfoSync.md │ │ │ ├── getStorageSync.md │ │ │ ├── removeStorage.md │ │ │ ├── removeStorageSync.md │ │ │ ├── setStorage.md │ │ │ └── setStorageSync.md │ │ └── updates │ │ │ ├── getUpdateManager.md │ │ │ └── manager.md │ ├── async-await.md │ ├── before-dev-remind.md │ ├── best-practice.md │ ├── children.md │ ├── component-style.md │ ├── components-desc.md │ ├── components │ │ ├── base │ │ │ ├── icon.md │ │ │ ├── progress.md │ │ │ ├── rich-text.md │ │ │ └── text.md │ │ ├── canvas │ │ │ └── canvas.md │ │ ├── forms │ │ │ ├── button.md │ │ │ ├── checkbox.md │ │ │ ├── form.md │ │ │ ├── input.md │ │ │ ├── label.md │ │ │ ├── picker-view.md │ │ │ ├── picker.md │ │ │ ├── radio.md │ │ │ ├── slider.md │ │ │ ├── switch.md │ │ │ └── textarea.md │ │ ├── maps │ │ │ └── map.md │ │ ├── media │ │ │ ├── audio.md │ │ │ ├── camera.md │ │ │ ├── image.md │ │ │ ├── live-player.md │ │ │ ├── live-pusher.md │ │ │ └── video.md │ │ ├── navig │ │ │ └── navigator.md │ │ ├── open │ │ │ ├── ad.md │ │ │ ├── official-account.md │ │ │ ├── open-data.md │ │ │ ├── others.md │ │ │ └── web-view.md │ │ └── viewContainer │ │ │ ├── cover-view.md │ │ │ ├── movable-view.md │ │ │ ├── scroll-view.md │ │ │ ├── swiper.md │ │ │ └── view.md │ ├── composition.md │ ├── condition.md │ ├── config-detail.md │ ├── config.md │ ├── context.md │ ├── css-in-js.md │ ├── css-modules.md │ ├── debug.md │ ├── difference-to-others.md │ ├── envs-debug.md │ ├── envs.md │ ├── event.md │ ├── functional-component.md │ ├── hooks.md │ ├── html.md │ ├── hybrid.md │ ├── join-in.md │ ├── jsx.md │ ├── list.md │ ├── migration.md │ ├── mini-third-party.md │ ├── miniprogram-plugin.md │ ├── mobx.md │ ├── nerv.md │ ├── optimized-practice.md │ ├── prerender.md │ ├── project-config.md │ ├── props.md │ ├── quick-app.md │ ├── react-native.md │ ├── react.md │ ├── redux.md │ ├── ref.md │ ├── relations.md │ ├── render-props.md │ ├── report.md │ ├── router.md │ ├── seowhy.md │ ├── size.md │ ├── spec-for-taro.md │ ├── specials.md │ ├── state.md │ ├── static-reference.md │ ├── taro-quickapp-manifest.md │ ├── taroize.md │ ├── team.md │ ├── template.md │ ├── tutorial.md │ ├── ui-lib.md │ ├── vue.md │ └── wxcloud.md ├── version-2.x │ ├── CONTRIBUTING.md │ ├── GETTING-STARTED.md │ ├── README.md │ ├── apis │ │ ├── General.md │ │ ├── about │ │ │ ├── desc.md │ │ │ ├── env.md │ │ │ ├── events.md │ │ │ └── tarocomponent.md │ │ ├── ad │ │ │ ├── InterstitialAd.md │ │ │ ├── RewardedVideoAd.md │ │ │ ├── createInterstitialAd.md │ │ │ └── createRewardedVideoAd.md │ │ ├── alipay │ │ │ └── getOpenUserInfo.md │ │ ├── base │ │ │ ├── arrayBufferToBase64.md │ │ │ ├── base64ToArrayBuffer.md │ │ │ ├── canIUse.md │ │ │ ├── debug │ │ │ │ ├── LogManager.md │ │ │ │ ├── RealtimeLogManager.md │ │ │ │ ├── getLogManager.md │ │ │ │ ├── getRealtimeLogManager.md │ │ │ │ └── setEnableDebug.md │ │ │ ├── env │ │ │ │ └── env.md │ │ │ ├── system │ │ │ │ ├── getSystemInfo.md │ │ │ │ └── getSystemInfoSync.md │ │ │ ├── update │ │ │ │ ├── UpdateManager.md │ │ │ │ └── getUpdateManager.md │ │ │ └── weapp │ │ │ │ ├── app-event │ │ │ │ ├── offAppHide.md │ │ │ │ ├── offAppShow.md │ │ │ │ ├── offAudioInterruptionBegin.md │ │ │ │ ├── offAudioInterruptionEnd.md │ │ │ │ ├── offError.md │ │ │ │ ├── offPageNotFound.md │ │ │ │ ├── onAppHide.md │ │ │ │ ├── onAppShow.md │ │ │ │ ├── onAudioInterruptionBegin.md │ │ │ │ ├── onAudioInterruptionEnd.md │ │ │ │ ├── onError.md │ │ │ │ └── onPageNotFound.md │ │ │ │ └── life-cycle │ │ │ │ └── getLaunchOptionsSync.md │ │ ├── canvas │ │ │ ├── Canvas.md │ │ │ ├── CanvasContext.md │ │ │ ├── CanvasGradient.md │ │ │ ├── Color.md │ │ │ ├── Image.md │ │ │ ├── ImageData.md │ │ │ ├── OffscreenCanvas.md │ │ │ ├── RenderingContext.md │ │ │ ├── canvasGetImageData.md │ │ │ ├── canvasPutImageData.md │ │ │ ├── canvasToTempFilePath.md │ │ │ ├── createCanvasContext.md │ │ │ ├── createContext.md │ │ │ ├── createOffscreenCanvas.md │ │ │ └── drawCanvas.md │ │ ├── cloud │ │ │ ├── DB.md │ │ │ └── cloud.md │ │ ├── device │ │ │ ├── accelerometer │ │ │ │ ├── offAccelerometerChange.md │ │ │ │ ├── onAccelerometerChange.md │ │ │ │ ├── startAccelerometer.md │ │ │ │ └── stopAccelerometer.md │ │ │ ├── battery │ │ │ │ ├── getBatteryInfo.md │ │ │ │ └── getBatteryInfoSync.md │ │ │ ├── ble │ │ │ │ ├── closeBLEConnection.md │ │ │ │ ├── createBLEConnection.md │ │ │ │ ├── getBLEDeviceCharacteristics.md │ │ │ │ ├── getBLEDeviceServices.md │ │ │ │ ├── notifyBLECharacteristicValueChange.md │ │ │ │ ├── onBLECharacteristicValueChange.md │ │ │ │ ├── onBLEConnectionStateChange.md │ │ │ │ ├── readBLECharacteristicValue.md │ │ │ │ └── writeBLECharacteristicValue.md │ │ │ ├── bluetooth │ │ │ │ ├── closeBluetoothAdapter.md │ │ │ │ ├── getBluetoothAdapterState.md │ │ │ │ ├── getBluetoothDevices.md │ │ │ │ ├── getConnectedBluetoothDevices.md │ │ │ │ ├── onBluetoothAdapterStateChange.md │ │ │ │ ├── onBluetoothDeviceFound.md │ │ │ │ ├── openBluetoothAdapter.md │ │ │ │ ├── startBluetoothDevicesDiscovery.md │ │ │ │ └── stopBluetoothDevicesDiscovery.md │ │ │ ├── clipboard │ │ │ │ ├── getClipboardData.md │ │ │ │ └── setClipboardData.md │ │ │ ├── compass │ │ │ │ ├── offCompassChange.md │ │ │ │ ├── onCompassChange.md │ │ │ │ ├── startCompass.md │ │ │ │ └── stopCompass.md │ │ │ ├── contact │ │ │ │ └── addPhoneContact.md │ │ │ ├── gyroscope │ │ │ │ ├── offGyroscopeChange.md │ │ │ │ ├── onGyroscopeChange.md │ │ │ │ ├── startGyroscope.md │ │ │ │ └── stopGyroscope.md │ │ │ ├── ibeacon │ │ │ │ ├── IBeaconInfo.md │ │ │ │ ├── getBeacons.md │ │ │ │ ├── offBeaconServiceChange.md │ │ │ │ ├── offBeaconUpdate.md │ │ │ │ ├── onBeaconServiceChange.md │ │ │ │ ├── onBeaconUpdate.md │ │ │ │ ├── startBeaconDiscovery.md │ │ │ │ └── stopBeaconDiscovery.md │ │ │ ├── motion │ │ │ │ ├── offDeviceMotionChange.md │ │ │ │ ├── onDeviceMotionChange.md │ │ │ │ ├── startDeviceMotionListening.md │ │ │ │ └── stopDeviceMotionListening.md │ │ │ ├── network │ │ │ │ ├── getNetworkType.md │ │ │ │ ├── offNetworkStatusChange.md │ │ │ │ └── onNetworkStatusChange.md │ │ │ ├── nfc │ │ │ │ ├── getHCEState.md │ │ │ │ ├── offHCEMessage.md │ │ │ │ ├── onHCEMessage.md │ │ │ │ ├── sendHCEMessage.md │ │ │ │ ├── startHCE.md │ │ │ │ └── stopHCE.md │ │ │ ├── performance │ │ │ │ └── onMemoryWarning.md │ │ │ ├── phone │ │ │ │ └── makePhoneCall.md │ │ │ ├── scan │ │ │ │ └── scancode.md │ │ │ ├── screen │ │ │ │ ├── getScreenBrightness.md │ │ │ │ ├── offUserCaptureScreen.md │ │ │ │ ├── onUserCaptureScreen.md │ │ │ │ ├── setKeepScreenOn.md │ │ │ │ └── setScreenBrightness.md │ │ │ ├── vibrate │ │ │ │ ├── vibrateLong.md │ │ │ │ └── vibrateShort.md │ │ │ └── wifi │ │ │ │ ├── WifiInfo.md │ │ │ │ ├── connectWifi.md │ │ │ │ ├── getConnectedWifi.md │ │ │ │ ├── getWifiList.md │ │ │ │ ├── offGetWifiList.md │ │ │ │ ├── offWifiConnected.md │ │ │ │ ├── onGetWifiList.md │ │ │ │ ├── onWifiConnected.md │ │ │ │ ├── setWifiList.md │ │ │ │ ├── startWifi.md │ │ │ │ └── stopWifi.md │ │ ├── ext │ │ │ ├── getExtConfig.md │ │ │ └── getExtConfigSync.md │ │ ├── files │ │ │ ├── FileSystemManager.md │ │ │ ├── Stats.md │ │ │ ├── getFileInfo.md │ │ │ ├── getFileSystemManager.md │ │ │ ├── getSavedFileInfo.md │ │ │ ├── getSavedFileList.md │ │ │ ├── openDocument.md │ │ │ ├── removeSavedFile.md │ │ │ └── saveFile.md │ │ ├── framework │ │ │ ├── App.md │ │ │ ├── Page.md │ │ │ ├── getApp.md │ │ │ └── getCurrentPages.md │ │ ├── location │ │ │ ├── chooseLocation.md │ │ │ ├── getLocation.md │ │ │ ├── offLocationChange.md │ │ │ ├── onLocationChange.md │ │ │ ├── openLocation.md │ │ │ ├── startLocationUpdate.md │ │ │ ├── startLocationUpdateBackground.md │ │ │ └── stopLocationUpdate.md │ │ ├── media │ │ │ ├── audio │ │ │ │ ├── AudioContext.md │ │ │ │ ├── InnerAudioContext.md │ │ │ │ ├── createAudioContext.md │ │ │ │ ├── createInnerAudioContext.md │ │ │ │ ├── getAvailableAudioSources.md │ │ │ │ ├── pauseVoice.md │ │ │ │ ├── playVoice.md │ │ │ │ ├── setInnerAudioOption.md │ │ │ │ └── stopVoice.md │ │ │ ├── background-audio │ │ │ │ ├── BackgroundAudioManager.md │ │ │ │ ├── getBackgroundAudioManager.md │ │ │ │ ├── getBackgroundAudioPlayerState.md │ │ │ │ ├── onBackgroundAudioPause.md │ │ │ │ ├── onBackgroundAudioPlay.md │ │ │ │ ├── onBackgroundAudioStop.md │ │ │ │ ├── pauseBackgroundAudio.md │ │ │ │ ├── playBackgroundAudio.md │ │ │ │ ├── seekBackgroundAudio.md │ │ │ │ └── stopBackgroundAudio.md │ │ │ ├── camera │ │ │ │ ├── CameraContext.md │ │ │ │ ├── CameraFrameListener.md │ │ │ │ └── createCameraContext.md │ │ │ ├── editor │ │ │ │ └── EditorContext.md │ │ │ ├── image │ │ │ │ ├── chooseImage.md │ │ │ │ ├── chooseMedia.md │ │ │ │ ├── chooseMessageFile.md │ │ │ │ ├── compressImage.md │ │ │ │ ├── getImageInfo.md │ │ │ │ ├── previewImage.md │ │ │ │ └── saveImageToPhotosAlbum.md │ │ │ ├── live │ │ │ │ ├── LivePlayerContext.md │ │ │ │ ├── LivePusherContext.md │ │ │ │ ├── createLivePlayerContext.md │ │ │ │ └── createLivePusherContext.md │ │ │ ├── map │ │ │ │ ├── MapContext.md │ │ │ │ └── createMapContext.md │ │ │ ├── recorder │ │ │ │ ├── RecorderManager.md │ │ │ │ ├── getRecorderManager.md │ │ │ │ ├── startRecord.md │ │ │ │ └── stopRecord.md │ │ │ ├── video-processing │ │ │ │ ├── MediaContainer.md │ │ │ │ ├── MediaTrack.md │ │ │ │ └── createMediaContainer.md │ │ │ └── video │ │ │ │ ├── VideoContext.md │ │ │ │ ├── chooseVideo.md │ │ │ │ ├── createVideoContext.md │ │ │ │ └── saveVideoToPhotosAlbum.md │ │ ├── network │ │ │ ├── download │ │ │ │ ├── DownloadTask.md │ │ │ │ └── downloadFile.md │ │ │ ├── mdns │ │ │ │ ├── offLocalServiceDiscoveryStop.md │ │ │ │ ├── offLocalServiceFound.md │ │ │ │ ├── offLocalServiceLost.md │ │ │ │ ├── offLocalServiceResolveFail.md │ │ │ │ ├── onLocalServiceDiscoveryStop.md │ │ │ │ ├── onLocalServiceFound.md │ │ │ │ ├── onLocalServiceLost.md │ │ │ │ ├── onLocalServiceResolveFail.md │ │ │ │ ├── startLocalServiceDiscovery.md │ │ │ │ └── stopLocalServiceDiscovery.md │ │ │ ├── request │ │ │ │ ├── RequestTask.md │ │ │ │ ├── addInterceptor.md │ │ │ │ └── request.md │ │ │ ├── udp │ │ │ │ ├── UDPSocket.md │ │ │ │ └── createUDPSocket.md │ │ │ ├── upload │ │ │ │ ├── UploadTask.md │ │ │ │ └── uploadFile.md │ │ │ └── webSocket │ │ │ │ ├── SocketTask.md │ │ │ │ ├── closeSocket.md │ │ │ │ ├── connectSocket.md │ │ │ │ ├── onSocketClose.md │ │ │ │ ├── onSocketError.md │ │ │ │ ├── onSocketMessage.md │ │ │ │ ├── onSocketOpen.md │ │ │ │ └── sendSocketMessage.md │ │ ├── open-api │ │ │ ├── account │ │ │ │ └── getAccountInfoSync.md │ │ │ ├── address │ │ │ │ └── chooseAddress.md │ │ │ ├── authorize │ │ │ │ └── authorize.md │ │ │ ├── card │ │ │ │ ├── addCard.md │ │ │ │ ├── card.md │ │ │ │ └── openCard.md │ │ │ ├── data-analysis │ │ │ │ └── reportAnalytics.md │ │ │ ├── facial │ │ │ │ ├── checkIsSupportFacialRecognition.md │ │ │ │ ├── startFacialRecognitionVerify.md │ │ │ │ └── startFacialRecognitionVerifyAndUploadVideo.md │ │ │ ├── invoice │ │ │ │ ├── chooseInvoice.md │ │ │ │ └── chooseInvoiceTitle.md │ │ │ ├── login │ │ │ │ ├── checkSession.md │ │ │ │ └── login.md │ │ │ ├── navigate │ │ │ │ ├── navigateBackMiniProgram.md │ │ │ │ └── navigateToMiniProgram.md │ │ │ ├── payment │ │ │ │ ├── faceVerifyForPay.md │ │ │ │ └── requestPayment.md │ │ │ ├── report │ │ │ │ └── reportMonitor.md │ │ │ ├── settings │ │ │ │ ├── AuthSetting.md │ │ │ │ ├── getSetting.md │ │ │ │ └── openSetting.md │ │ │ ├── soter │ │ │ │ ├── checkIsSoterEnrolledInDevice.md │ │ │ │ ├── checkIsSupportSoterAuthentication.md │ │ │ │ └── startSoterAuthentication.md │ │ │ ├── subscribe-message │ │ │ │ └── requestSubscribeMessage.md │ │ │ ├── user-info │ │ │ │ ├── UserInfo.md │ │ │ │ ├── getUserInfo.md │ │ │ │ └── getUserProfile.md │ │ │ └── werun │ │ │ │ └── getWeRunData.md │ │ ├── route │ │ │ ├── EventChannel.md │ │ │ ├── navigateBack.md │ │ │ ├── navigateTo.md │ │ │ ├── reLaunch.md │ │ │ ├── redirectTo.md │ │ │ └── switchTab.md │ │ ├── share │ │ │ ├── getShareInfo.md │ │ │ ├── hideShareMenu.md │ │ │ ├── showShareMenu.md │ │ │ └── updateShareMenu.md │ │ ├── storage │ │ │ ├── background-fetch │ │ │ │ ├── getBackgroundFetchData.md │ │ │ │ ├── getBackgroundFetchToken.md │ │ │ │ ├── onBackgroundFetchData.md │ │ │ │ └── setBackgroundFetchToken.md │ │ │ ├── clearStorage.md │ │ │ ├── clearStorageSync.md │ │ │ ├── getStorage.md │ │ │ ├── getStorageInfo.md │ │ │ ├── getStorageInfoSync.md │ │ │ ├── getStorageSync.md │ │ │ ├── removeStorage.md │ │ │ ├── removeStorageSync.md │ │ │ ├── setStorage.md │ │ │ └── setStorageSync.md │ │ ├── swan │ │ │ └── setPageInfo.md │ │ ├── ui │ │ │ ├── animation │ │ │ │ ├── Animation.md │ │ │ │ └── createAnimation.md │ │ │ ├── background │ │ │ │ ├── setBackgroundColor.md │ │ │ │ └── setBackgroundTextStyle.md │ │ │ ├── custom-component │ │ │ │ └── nextTick.md │ │ │ ├── fonts │ │ │ │ └── loadFontFace.md │ │ │ ├── interaction │ │ │ │ ├── hideLoading.md │ │ │ │ ├── hideToast.md │ │ │ │ ├── showActionSheet.md │ │ │ │ ├── showLoading.md │ │ │ │ ├── showModal.md │ │ │ │ └── showToast.md │ │ │ ├── keyboard │ │ │ │ ├── getSelectedTextRange.md │ │ │ │ ├── hideKeyboard.md │ │ │ │ └── onKeyboardHeightChange.md │ │ │ ├── menu │ │ │ │ └── getMenuButtonBoundingClientRect.md │ │ │ ├── navigation-bar │ │ │ │ ├── hideHomeButton.md │ │ │ │ ├── hideNavigationBarLoading.md │ │ │ │ ├── setNavigationBarColor.md │ │ │ │ ├── setNavigationBarTitle.md │ │ │ │ └── showNavigationBarLoading.md │ │ │ ├── pull-down-refresh │ │ │ │ ├── startPullDownRefresh.md │ │ │ │ └── stopPullDownRefresh.md │ │ │ ├── scroll │ │ │ │ └── pageScrollTo.md │ │ │ ├── sticky │ │ │ │ └── setTopBarText.md │ │ │ ├── tab-bar │ │ │ │ ├── hideTabBar.md │ │ │ │ ├── hideTabBarRedDot.md │ │ │ │ ├── removeTabBarBadge.md │ │ │ │ ├── setTabBarBadge.md │ │ │ │ ├── setTabBarItem.md │ │ │ │ ├── setTabBarStyle.md │ │ │ │ ├── showTabBar.md │ │ │ │ └── showTabBarRedDot.md │ │ │ └── window │ │ │ │ ├── offWindowResize.md │ │ │ │ └── onWindowResize.md │ │ ├── worker │ │ │ ├── Worker.md │ │ │ └── createWorker.md │ │ └── wxml │ │ │ ├── IntersectionObserver.md │ │ │ ├── NodesRef.md │ │ │ ├── SelectorQuery.md │ │ │ ├── createIntersectionObserver.md │ │ │ └── createSelectorQuery.md │ ├── async-await.md │ ├── before-dev-remind.md │ ├── best-practice.md │ ├── children.md │ ├── component-style.md │ ├── components-desc.md │ ├── components │ │ ├── base │ │ │ ├── icon.md │ │ │ ├── progress.md │ │ │ ├── rich-text.md │ │ │ └── text.md │ │ ├── canvas │ │ │ └── canvas.md │ │ ├── common.md │ │ ├── forms │ │ │ ├── button.md │ │ │ ├── checkbox-group.md │ │ │ ├── checkbox.md │ │ │ ├── editor.md │ │ │ ├── form.md │ │ │ ├── input.md │ │ │ ├── label.md │ │ │ ├── picker-view-column.md │ │ │ ├── picker-view.md │ │ │ ├── picker.md │ │ │ ├── radio-group.md │ │ │ ├── radio.md │ │ │ ├── slider.md │ │ │ ├── switch.md │ │ │ └── textarea.md │ │ ├── maps │ │ │ └── map.md │ │ ├── media │ │ │ ├── audio.md │ │ │ ├── camera.md │ │ │ ├── image.md │ │ │ ├── live-player.md │ │ │ ├── live-pusher.md │ │ │ └── video.md │ │ ├── navig │ │ │ ├── Functional-Page-Navigator.md │ │ │ └── navigator.md │ │ ├── navigation-bar.md │ │ ├── open │ │ │ ├── ad.md │ │ │ ├── official-account.md │ │ │ ├── open-data.md │ │ │ ├── others.md │ │ │ └── web-view.md │ │ ├── page-meta.md │ │ └── viewContainer │ │ │ ├── cover-image.md │ │ │ ├── cover-view.md │ │ │ ├── movable-area.md │ │ │ ├── movable-view.md │ │ │ ├── scroll-view.md │ │ │ ├── swiper-item.md │ │ │ ├── swiper.md │ │ │ └── view.md │ ├── composition.md │ ├── condition.md │ ├── config-detail.md │ ├── config.md │ ├── context.md │ ├── css-modules.md │ ├── debug-config.md │ ├── debug.md │ ├── envs-debug.md │ ├── envs.md │ ├── event.md │ ├── functional-component.md │ ├── hooks.md │ ├── hybrid.md │ ├── join-in.md │ ├── join-us.md │ ├── jsx.md │ ├── learn.md │ ├── list.md │ ├── migrate-to-2.md │ ├── mini-third-party.md │ ├── miniprogram-plugin.md │ ├── mobx.md │ ├── optimized-practice.md │ ├── plugin.md │ ├── project-config.md │ ├── props.md │ ├── quick-app.md │ ├── react-native.md │ ├── redux.md │ ├── ref.md │ ├── relations.md │ ├── render-props.md │ ├── report.md │ ├── router.md │ ├── script-compressor.md │ ├── seowhy.md │ ├── size.md │ ├── spec-for-taro.md │ ├── specials.md │ ├── state.md │ ├── static-reference.md │ ├── styles-processor.md │ ├── taro-quickapp-manifest.md │ ├── taroize.md │ ├── team.md │ ├── template.md │ ├── tutorial.md │ ├── ui-lib.md │ ├── wxcloudbase.md │ └── youshu.md └── version-3.x │ ├── CONTRIBUTING-GUIDE.md │ ├── CONTRIBUTING.md │ ├── GETTING-STARTED.md │ ├── README.mdx │ ├── apis │ ├── General.md │ ├── about │ │ ├── desc.md │ │ ├── env.md │ │ ├── events.md │ │ └── tarocomponent.md │ ├── ad │ │ ├── InterstitialAd.md │ │ ├── RewardedVideoAd.md │ │ ├── createInterstitialAd.md │ │ └── createRewardedVideoAd.md │ ├── ai │ │ ├── face │ │ │ ├── faceDetect.md │ │ │ ├── initFaceDetect.md │ │ │ └── stopFaceDetect.md │ │ ├── inference │ │ │ ├── InferenceSession.md │ │ │ ├── createInferenceSession.md │ │ │ └── getInferenceEnvInfo.md │ │ └── visionkit │ │ │ ├── VKBodyAnchor.md │ │ │ ├── VKCamera.md │ │ │ ├── VKDepthAnchor.md │ │ │ ├── VKFaceAnchor.md │ │ │ ├── VKFrame.md │ │ │ ├── VKHandAnchor.md │ │ │ ├── VKMarkerAnchor.md │ │ │ ├── VKOCRAnchor.md │ │ │ ├── VKOSDAnchor.md │ │ │ ├── VKPlaneAnchor.md │ │ │ ├── VKSession.md │ │ │ ├── createVKSession.md │ │ │ └── isVKSupport.md │ ├── alipay │ │ ├── getOpenUserInfo.md │ │ └── tradePay.md │ ├── base │ │ ├── arrayBufferToBase64.md │ │ ├── base64ToArrayBuffer.md │ │ ├── canIUse.md │ │ ├── canIUseWebp.md │ │ ├── crypto │ │ │ ├── UserCryptoManager.md │ │ │ ├── getRandomValues.md │ │ │ └── getUserCryptoManager.md │ │ ├── debug │ │ │ ├── LogManager.md │ │ │ ├── RealtimeLogManager.md │ │ │ ├── RealtimeTagLogManager.md │ │ │ ├── console.md │ │ │ ├── getLogManager.md │ │ │ ├── getRealtimeLogManager.md │ │ │ └── setEnableDebug.md │ │ ├── env.md │ │ ├── env │ │ │ └── env.md │ │ ├── performance │ │ │ ├── EntryList.md │ │ │ ├── Performance.md │ │ │ ├── PerformanceEntry.md │ │ │ ├── PerformanceObserver.md │ │ │ ├── getPerformance.md │ │ │ ├── preloadAssets.md │ │ │ ├── preloadSkylineView.md │ │ │ ├── preloadWebview.md │ │ │ └── reportPerformance.md │ │ ├── preload.md │ │ ├── system │ │ │ ├── getAppAuthorizeSetting.md │ │ │ ├── getAppBaseInfo.md │ │ │ ├── getDeviceInfo.md │ │ │ ├── getRendererUserAgent.md │ │ │ ├── getSkylineInfo.md │ │ │ ├── getSkylineInfoSync.md │ │ │ ├── getSystemInfo.md │ │ │ ├── getSystemInfoAsync.md │ │ │ ├── getSystemInfoSync.md │ │ │ ├── getSystemSetting.md │ │ │ ├── getWindowInfo.md │ │ │ ├── openAppAuthorizeSetting.md │ │ │ └── openSystemBluetoothSetting.md │ │ ├── update │ │ │ ├── UpdateManager.md │ │ │ ├── getUpdateManager.md │ │ │ └── updateWeChatApp.md │ │ └── weapp │ │ │ ├── app-event │ │ │ ├── offAppHide.md │ │ │ ├── offAppShow.md │ │ │ ├── offAudioInterruptionBegin.md │ │ │ ├── offAudioInterruptionEnd.md │ │ │ ├── offError.md │ │ │ ├── offPageNotFound.md │ │ │ ├── offThemeChange.md │ │ │ ├── offUnhandledRejection.md │ │ │ ├── onAppHide.md │ │ │ ├── onAppShow.md │ │ │ ├── onAudioInterruptionBegin.md │ │ │ ├── onAudioInterruptionEnd.md │ │ │ ├── onError.md │ │ │ ├── onPageNotFound.md │ │ │ ├── onThemeChange.md │ │ │ └── onUnhandledRejection.md │ │ │ └── life-cycle │ │ │ ├── getEnterOptionsSync.md │ │ │ └── getLaunchOptionsSync.md │ ├── canvas │ │ ├── Canvas.md │ │ ├── CanvasContext.md │ │ ├── CanvasGradient.md │ │ ├── Color.md │ │ ├── Image.md │ │ ├── ImageData.md │ │ ├── OffscreenCanvas.md │ │ ├── Path2D.md │ │ ├── RenderingContext.md │ │ ├── canvasGetImageData.md │ │ ├── canvasPutImageData.md │ │ ├── canvasToTempFilePath.md │ │ ├── createCanvasContext.md │ │ ├── createContext.md │ │ ├── createOffscreenCanvas.md │ │ ├── drawCanvas.md │ │ └── toTempFilePath.md │ ├── cloud │ │ ├── DB.md │ │ └── cloud.md │ ├── data-analysis │ │ ├── getCommonConfig.md │ │ ├── getExptInfoSync.md │ │ ├── reportAnalytics.md │ │ ├── reportEvent.md │ │ └── reportMonitor.md │ ├── device │ │ ├── accelerometer │ │ │ ├── offAccelerometerChange.md │ │ │ ├── onAccelerometerChange.md │ │ │ ├── startAccelerometer.md │ │ │ └── stopAccelerometer.md │ │ ├── accessibility │ │ │ └── checkIsOpenAccessibility.md │ │ ├── battery │ │ │ ├── getBatteryInfo.md │ │ │ └── getBatteryInfoSync.md │ │ ├── bluetooth-ble │ │ │ ├── closeBLEConnection.md │ │ │ ├── createBLEConnection.md │ │ │ ├── getBLEDeviceCharacteristics.md │ │ │ ├── getBLEDeviceRSSI.md │ │ │ ├── getBLEDeviceServices.md │ │ │ ├── getBLEMTU.md │ │ │ ├── notifyBLECharacteristicValueChange.md │ │ │ ├── offBLECharacteristicValueChange.md │ │ │ ├── offBLEConnectionStateChange.md │ │ │ ├── offBLEMTUChange.md │ │ │ ├── onBLECharacteristicValueChange.md │ │ │ ├── onBLEConnectionStateChange.md │ │ │ ├── onBLEMTUChange.md │ │ │ ├── readBLECharacteristicValue.md │ │ │ ├── setBLEMTU.md │ │ │ └── writeBLECharacteristicValue.md │ │ ├── bluetooth-peripheral │ │ │ ├── BLEPeripheralServer.md │ │ │ ├── createBLEPeripheralServer.md │ │ │ ├── offBLEPeripheralConnectionStateChanged.md │ │ │ └── onBLEPeripheralConnectionStateChanged.md │ │ ├── bluetooth │ │ │ ├── closeBluetoothAdapter.md │ │ │ ├── getBluetoothAdapterState.md │ │ │ ├── getBluetoothDevices.md │ │ │ ├── getConnectedBluetoothDevices.md │ │ │ ├── isBluetoothDevicePaired.md │ │ │ ├── makeBluetoothPair.md │ │ │ ├── offBluetoothAdapterStateChange.md │ │ │ ├── offBluetoothDeviceFound.md │ │ │ ├── onBluetoothAdapterStateChange.md │ │ │ ├── onBluetoothDeviceFound.md │ │ │ ├── openBluetoothAdapter.md │ │ │ ├── startBluetoothDevicesDiscovery.md │ │ │ └── stopBluetoothDevicesDiscovery.md │ │ ├── calendar │ │ │ ├── addPhoneCalendar.md │ │ │ └── addPhoneRepeatCalendar.md │ │ ├── clipboard │ │ │ ├── getClipboardData.md │ │ │ └── setClipboardData.md │ │ ├── compass │ │ │ ├── offCompassChange.md │ │ │ ├── onCompassChange.md │ │ │ ├── startCompass.md │ │ │ └── stopCompass.md │ │ ├── contact │ │ │ ├── addPhoneContact.md │ │ │ └── chooseContact.md │ │ ├── gyroscope │ │ │ ├── offGyroscopeChange.md │ │ │ ├── onGyroscopeChange.md │ │ │ ├── startGyroscope.md │ │ │ └── stopGyroscope.md │ │ ├── iBeacon │ │ │ ├── IBeaconInfo.md │ │ │ ├── getBeacons.md │ │ │ ├── offBeaconServiceChange.md │ │ │ ├── offBeaconUpdate.md │ │ │ ├── onBeaconServiceChange.md │ │ │ ├── onBeaconUpdate.md │ │ │ ├── startBeaconDiscovery.md │ │ │ └── stopBeaconDiscovery.md │ │ ├── keyboard │ │ │ ├── getSelectedTextRange.md │ │ │ ├── hideKeyboard.md │ │ │ ├── offKeyboardHeightChange.md │ │ │ └── onKeyboardHeightChange.md │ │ ├── memory │ │ │ ├── offMemoryWarning.md │ │ │ └── onMemoryWarning.md │ │ ├── motion │ │ │ ├── offDeviceMotionChange.md │ │ │ ├── onDeviceMotionChange.md │ │ │ ├── startDeviceMotionListening.md │ │ │ └── stopDeviceMotionListening.md │ │ ├── network │ │ │ ├── getLocalIPAddress.md │ │ │ ├── getNetworkType.md │ │ │ ├── offNetworkStatusChange.md │ │ │ ├── offNetworkWeakChange.md │ │ │ ├── onNetworkStatusChange.md │ │ │ └── onNetworkWeakChange.md │ │ ├── nfc │ │ │ ├── IsoDep.md │ │ │ ├── MifareClassic.md │ │ │ ├── MifareUltralight.md │ │ │ ├── NFCAdapter.md │ │ │ ├── Ndef.md │ │ │ ├── NfcA.md │ │ │ ├── NfcB.md │ │ │ ├── NfcF.md │ │ │ ├── NfcV.md │ │ │ ├── getHCEState.md │ │ │ ├── getNFCAdapter.md │ │ │ ├── offHCEMessage.md │ │ │ ├── onHCEMessage.md │ │ │ ├── sendHCEMessage.md │ │ │ ├── startHCE.md │ │ │ └── stopHCE.md │ │ ├── phone │ │ │ └── makePhoneCall.md │ │ ├── scan │ │ │ └── scanCode.md │ │ ├── screen │ │ │ ├── getScreenBrightness.md │ │ │ ├── getScreenRecordingState.md │ │ │ ├── offScreenRecordingStateChanged.md │ │ │ ├── offUserCaptureScreen.md │ │ │ ├── onScreenRecordingStateChanged.md │ │ │ ├── onUserCaptureScreen.md │ │ │ ├── setKeepScreenOn.md │ │ │ ├── setScreenBrightness.md │ │ │ └── setVisualEffectOnCapture.md │ │ ├── sms │ │ │ └── sendSms.md │ │ ├── vibrate │ │ │ ├── vibrateLong.md │ │ │ └── vibrateShort.md │ │ └── wifi │ │ │ ├── WifiInfo.md │ │ │ ├── connectWifi.md │ │ │ ├── getConnectedWifi.md │ │ │ ├── getWifiList.md │ │ │ ├── offGetWifiList.md │ │ │ ├── offWifiConnected.md │ │ │ ├── offWifiConnectedWithPartialInfo.md │ │ │ ├── onGetWifiList.md │ │ │ ├── onWifiConnected.md │ │ │ ├── onWifiConnectedWithPartialInfo.md │ │ │ ├── setWifiList.md │ │ │ ├── startWifi.md │ │ │ └── stopWifi.md │ ├── ext │ │ ├── getExtConfig.md │ │ └── getExtConfigSync.md │ ├── files │ │ ├── FileSystemManager.md │ │ ├── ReadResult.md │ │ ├── Stats.md │ │ ├── WriteResult.md │ │ ├── getFileInfo.md │ │ ├── getFileSystemManager.md │ │ ├── getSavedFileInfo.md │ │ ├── getSavedFileList.md │ │ ├── openDocument.md │ │ ├── removeSavedFile.md │ │ ├── saveFile.md │ │ └── saveFileToDisk.md │ ├── framework │ │ ├── App.md │ │ ├── Page.md │ │ ├── getApp.md │ │ └── getCurrentPages.md │ ├── index.md │ ├── location │ │ ├── chooseLocation.md │ │ ├── choosePoi.md │ │ ├── getFuzzyLocation.md │ │ ├── getLocation.md │ │ ├── offLocationChange.md │ │ ├── offLocationChangeError.md │ │ ├── onLocationChange.md │ │ ├── onLocationChangeError.md │ │ ├── openLocation.md │ │ ├── startLocationUpdate.md │ │ ├── startLocationUpdateBackground.md │ │ └── stopLocationUpdate.md │ ├── media │ │ ├── audio │ │ │ ├── AudioBuffer.md │ │ │ ├── AudioContext.md │ │ │ ├── InnerAudioContext.md │ │ │ ├── MediaAudioPlayer.md │ │ │ ├── WebAudioContext.md │ │ │ ├── WebAudioContextNode.md │ │ │ ├── createAudioContext.md │ │ │ ├── createInnerAudioContext.md │ │ │ ├── createMediaAudioPlayer.md │ │ │ ├── createWebAudioContext.md │ │ │ ├── getAvailableAudioSources.md │ │ │ ├── pauseVoice.md │ │ │ ├── playVoice.md │ │ │ ├── setInnerAudioOption.md │ │ │ └── stopVoice.md │ │ ├── background-audio │ │ │ ├── BackgroundAudioManager.md │ │ │ ├── getBackgroundAudioManager.md │ │ │ ├── getBackgroundAudioPlayerState.md │ │ │ ├── onBackgroundAudioPause.md │ │ │ ├── onBackgroundAudioPlay.md │ │ │ ├── onBackgroundAudioStop.md │ │ │ ├── pauseBackgroundAudio.md │ │ │ ├── playBackgroundAudio.md │ │ │ ├── seekBackgroundAudio.md │ │ │ └── stopBackgroundAudio.md │ │ ├── camera │ │ │ ├── CameraContext.md │ │ │ ├── CameraFrameListener.md │ │ │ └── createCameraContext.md │ │ ├── editor │ │ │ └── EditorContext.md │ │ ├── image │ │ │ ├── chooseImage.md │ │ │ ├── chooseMessageFile.md │ │ │ ├── compressImage.md │ │ │ ├── cropImage.md │ │ │ ├── editImage.md │ │ │ ├── getImageInfo.md │ │ │ ├── previewImage.md │ │ │ ├── previewMedia.md │ │ │ └── saveImageToPhotosAlbum.md │ │ ├── live │ │ │ ├── LivePlayerContext.md │ │ │ ├── LivePusherContext.md │ │ │ ├── createLivePlayerContext.md │ │ │ └── createLivePusherContext.md │ │ ├── map │ │ │ ├── MapContext.md │ │ │ └── createMapContext.md │ │ ├── media-recorder │ │ │ ├── MediaRecorder.md │ │ │ └── createMediaRecorder.md │ │ ├── recorder │ │ │ ├── RecorderManager.md │ │ │ ├── getRecorderManager.md │ │ │ ├── startRecord.md │ │ │ └── stopRecord.md │ │ ├── video-decoder │ │ │ ├── VideoDecoder.md │ │ │ └── createVideoDecoder.md │ │ ├── video-processing │ │ │ ├── MediaContainer.md │ │ │ ├── MediaTrack.md │ │ │ └── createMediaContainer.md │ │ ├── video │ │ │ ├── VideoContext.md │ │ │ ├── chooseMedia.md │ │ │ ├── chooseVideo.md │ │ │ ├── compressVideo.md │ │ │ ├── createVideoContext.md │ │ │ ├── getVideoInfo.md │ │ │ ├── openVideoEditor.md │ │ │ └── saveVideoToPhotosAlbum.md │ │ └── voip │ │ │ ├── exitVoIPChat.md │ │ │ ├── join1v1Chat.md │ │ │ ├── joinVoIPChat.md │ │ │ ├── offVoIPChatInterrupted.md │ │ │ ├── offVoIPChatMembersChanged.md │ │ │ ├── offVoIPChatSpeakersChanged.md │ │ │ ├── offVoIPChatStateChanged.md │ │ │ ├── offVoIPVideoMembersChanged.md │ │ │ ├── onVoIPChatInterrupted.md │ │ │ ├── onVoIPChatMembersChanged.md │ │ │ ├── onVoIPChatSpeakersChanged.md │ │ │ ├── onVoIPChatStateChanged.md │ │ │ ├── onVoIPVideoMembersChanged.md │ │ │ ├── setEnable1v1Chat.md │ │ │ ├── subscribeVoIPVideoMembers.md │ │ │ └── updateVoIPChatMuteConfig.md │ ├── navigate │ │ ├── exitMiniProgram.md │ │ ├── navigateBackMiniProgram.md │ │ ├── navigateToMiniProgram.md │ │ ├── openBusinessView.md │ │ └── openEmbeddedMiniProgram.md │ ├── network │ │ ├── download │ │ │ ├── DownloadTask.md │ │ │ └── downloadFile.md │ │ ├── mdns │ │ │ ├── offLocalServiceDiscoveryStop.md │ │ │ ├── offLocalServiceFound.md │ │ │ ├── offLocalServiceLost.md │ │ │ ├── offLocalServiceResolveFail.md │ │ │ ├── onLocalServiceDiscoveryStop.md │ │ │ ├── onLocalServiceFound.md │ │ │ ├── onLocalServiceLost.md │ │ │ ├── onLocalServiceResolveFail.md │ │ │ ├── startLocalServiceDiscovery.md │ │ │ └── stopLocalServiceDiscovery.md │ │ ├── request │ │ │ ├── RequestTask.md │ │ │ ├── addInterceptor.md │ │ │ ├── cleanInterceptors.md │ │ │ └── request.md │ │ ├── tcp │ │ │ ├── TCPSocket.md │ │ │ └── createTCPSocket.md │ │ ├── udp │ │ │ ├── UDPSocket.md │ │ │ └── createUDPSocket.md │ │ ├── upload │ │ │ ├── UploadTask.md │ │ │ └── uploadFile.md │ │ └── websocket │ │ │ ├── SocketTask.md │ │ │ ├── closeSocket.md │ │ │ ├── connectSocket.md │ │ │ ├── onSocketClose.md │ │ │ ├── onSocketError.md │ │ │ ├── onSocketMessage.md │ │ │ ├── onSocketOpen.md │ │ │ └── sendSocketMessage.md │ ├── open-api │ │ ├── account │ │ │ └── getAccountInfoSync.md │ │ ├── address │ │ │ └── chooseAddress.md │ │ ├── authorize │ │ │ ├── authorize.md │ │ │ └── authorizeForMiniProgram.md │ │ ├── card │ │ │ ├── addCard.md │ │ │ ├── card.md │ │ │ └── openCard.md │ │ ├── channels │ │ │ ├── getChannelsLiveInfo.md │ │ │ ├── getChannelsLiveNoticeInfo.md │ │ │ ├── getChannelsShareKey.md │ │ │ ├── openChannelsActivity.md │ │ │ ├── openChannelsEvent.md │ │ │ ├── openChannelsLive.md │ │ │ ├── openChannelsUserProfile.md │ │ │ └── reserveChannelsLive.md │ │ ├── customer-service │ │ │ └── openCustomerServiceChat.md │ │ ├── device-voip │ │ │ ├── getDeviceVoIPList.md │ │ │ └── requestDeviceVoIP.md │ │ ├── facial │ │ │ ├── checkIsSupportFacialRecognition.md │ │ │ ├── startFacialRecognitionVerify.md │ │ │ └── startFacialRecognitionVerifyAndUploadVideo.md │ │ ├── favorites │ │ │ ├── addFileToFavorites.md │ │ │ └── addVideoToFavorites.md │ │ ├── group │ │ │ └── getGroupEnterInfo.md │ │ ├── invoice │ │ │ ├── chooseInvoice.md │ │ │ └── chooseInvoiceTitle.md │ │ ├── license-plate │ │ │ └── chooseLicensePlate.md │ │ ├── login │ │ │ ├── checkSession.md │ │ │ ├── login.md │ │ │ └── pluginLogin.md │ │ ├── my-miniprogram │ │ │ └── checkIsAddedToMyMiniProgram.md │ │ ├── privacy │ │ │ ├── getPrivacySetting.md │ │ │ ├── onNeedPrivacyAuthorization.md │ │ │ ├── openPrivacyContract.md │ │ │ └── requirePrivacyAuthorize.md │ │ ├── redpackage │ │ │ └── showRedPackage.md │ │ ├── settings │ │ │ ├── AuthSetting.md │ │ │ ├── SubscriptionsSetting.md │ │ │ ├── getSetting.md │ │ │ └── openSetting.md │ │ ├── soter │ │ │ ├── checkIsSoterEnrolledInDevice.md │ │ │ ├── checkIsSupportSoterAuthentication.md │ │ │ └── startSoterAuthentication.md │ │ ├── sticker │ │ │ ├── openSingleStickerView.md │ │ │ ├── openStickerIPView.md │ │ │ └── openStickerSetView.md │ │ ├── subscribe-message │ │ │ ├── requestSubscribeDeviceMessage.md │ │ │ ├── requestSubscribeMessage.md │ │ │ ├── subscribeService.md │ │ │ └── unsubscribeMessage.md │ │ ├── user-info │ │ │ ├── UserInfo.md │ │ │ ├── getUserInfo.md │ │ │ └── getUserProfile.md │ │ └── werun │ │ │ ├── getWeRunData.md │ │ │ └── shareToWeRun.md │ ├── payment │ │ ├── faceVerifyForPay.md │ │ ├── requestOrderPayment.md │ │ └── requestPayment.md │ ├── qq │ │ ├── addRecentColorSign.md │ │ ├── applyAddToMyApps.md │ │ ├── getGuildInfo.md │ │ ├── getQQRunData.md │ │ ├── isAddedToMyApps.md │ │ ├── openQzonePublish.md │ │ ├── setCustomDress.md │ │ ├── setOfficialDress.md │ │ └── updateQQApp.md │ ├── route │ │ ├── EventChannel.md │ │ ├── navigateBack.md │ │ ├── navigateTo.md │ │ ├── reLaunch.md │ │ ├── redirectTo.md │ │ └── switchTab.md │ ├── share │ │ ├── authPrivateMessage.md │ │ ├── getShareInfo.md │ │ ├── hideShareMenu.md │ │ ├── offCopyUrl.md │ │ ├── onCopyUrl.md │ │ ├── shareFileMessage.md │ │ ├── shareVideoMessage.md │ │ ├── showShareImageMenu.md │ │ ├── showShareMenu.md │ │ └── updateShareMenu.md │ ├── skyline │ │ └── Snapshot.md │ ├── storage │ │ ├── background-fetch │ │ │ ├── getBackgroundFetchData.md │ │ │ ├── getBackgroundFetchToken.md │ │ │ ├── onBackgroundFetchData.md │ │ │ └── setBackgroundFetchToken.md │ │ ├── batchGetStorage.md │ │ ├── batchGetStorageSync.md │ │ ├── batchSetStorage.md │ │ ├── batchSetStorageSync.md │ │ ├── cache-manager │ │ │ ├── CacheManager.md │ │ │ └── createCacheManager.md │ │ ├── clearStorage.md │ │ ├── clearStorageSync.md │ │ ├── createBufferURL.md │ │ ├── getStorage.md │ │ ├── getStorageInfo.md │ │ ├── getStorageInfoSync.md │ │ ├── getStorageSync.md │ │ ├── removeStorage.md │ │ ├── removeStorageSync.md │ │ ├── revokeBufferURL.md │ │ ├── setStorage.md │ │ └── setStorageSync.md │ ├── swan │ │ ├── bookshelf │ │ │ ├── deleteBookshelf.md │ │ │ ├── insertBookshelf.md │ │ │ ├── navigateToBookshelf.md │ │ │ ├── queryBookshelf.md │ │ │ └── updateBookshelfReadTime.md │ │ ├── download-package │ │ │ ├── downloadPackage.md │ │ │ ├── downloadPackages.md │ │ │ └── loadSubPackage.md │ │ ├── getFavorStatus.md │ │ ├── getSystemRiskInfo.md │ │ ├── getTopStatus.md │ │ ├── openBdboxWebview.md │ │ ├── pay │ │ │ ├── getOptimalPriceInfo.md │ │ │ └── requestPolymerPayment.md │ │ ├── setDocumentTitle.md │ │ ├── setMetaDescription.md │ │ ├── setMetaKeywords.md │ │ └── setPageInfo.md │ ├── taro.extend │ │ ├── eventCenter.md │ │ ├── getAppInfo.md │ │ ├── getCurrentInstance.md │ │ ├── getEnv.md │ │ ├── getEnvInfoSync.md │ │ ├── getRenderer.md │ │ ├── getTabBar.md │ │ ├── initPxTransform.md │ │ ├── interceptorify.md │ │ ├── pxTransform.md │ │ ├── requirePlugin.md │ │ └── setGlobalDataPlugin.md │ ├── taro.hooks │ │ ├── useAddToFavorites.md │ │ ├── useDidHide.md │ │ ├── useDidShow.md │ │ ├── useError.md │ │ ├── useLaunch.md │ │ ├── useLoad.md │ │ ├── useOptionMenuClick.md │ │ ├── usePageNotFound.md │ │ ├── usePageScroll.md │ │ ├── usePullDownRefresh.md │ │ ├── usePullIntercept.md │ │ ├── useReachBottom.md │ │ ├── useReady.md │ │ ├── useResize.md │ │ ├── useRouter.md │ │ ├── useSaveExitState.md │ │ ├── useShareAppMessage.md │ │ ├── useShareTimeline.md │ │ ├── useTabItemTap.md │ │ ├── useTitleClick.md │ │ ├── useUnhandledRejection.md │ │ └── useUnload.md │ ├── ui │ │ ├── animation │ │ │ ├── Animation.md │ │ │ └── createAnimation.md │ │ ├── background │ │ │ ├── setBackgroundColor.md │ │ │ └── setBackgroundTextStyle.md │ │ ├── custom-component │ │ │ └── nextTick.md │ │ ├── fonts │ │ │ └── loadFontFace.md │ │ ├── interaction │ │ │ ├── disableAlertBeforeUnload.md │ │ │ ├── enableAlertBeforeUnload.md │ │ │ ├── hideLoading.md │ │ │ ├── hideToast.md │ │ │ ├── showActionSheet.md │ │ │ ├── showLoading.md │ │ │ ├── showModal.md │ │ │ └── showToast.md │ │ ├── menu │ │ │ └── getMenuButtonBoundingClientRect.md │ │ ├── navigation-bar │ │ │ ├── hideHomeButton.md │ │ │ ├── hideNavigationBarLoading.md │ │ │ ├── setNavigationBarColor.md │ │ │ ├── setNavigationBarTitle.md │ │ │ └── showNavigationBarLoading.md │ │ ├── pull-down-refresh │ │ │ ├── startPullDownRefresh.md │ │ │ └── stopPullDownRefresh.md │ │ ├── scroll │ │ │ ├── ScrollViewContext.md │ │ │ └── pageScrollTo.md │ │ ├── sticky │ │ │ └── setTopBarText.md │ │ ├── tab-bar │ │ │ ├── hideTabBar.md │ │ │ ├── hideTabBarRedDot.md │ │ │ ├── removeTabBarBadge.md │ │ │ ├── setTabBarBadge.md │ │ │ ├── setTabBarItem.md │ │ │ ├── setTabBarStyle.md │ │ │ ├── showTabBar.md │ │ │ └── showTabBarRedDot.md │ │ └── window │ │ │ ├── checkIsPictureInPictureActive.md │ │ │ ├── offWindowResize.md │ │ │ ├── onWindowResize.md │ │ │ └── setWindowSize.md │ ├── worker │ │ ├── Worker.md │ │ └── createWorker.md │ └── wxml │ │ ├── IntersectionObserver.md │ │ ├── MediaQueryObserver.md │ │ ├── NodesRef.md │ │ ├── SelectorQuery.md │ │ ├── createIntersectionObserver.md │ │ ├── createMediaQueryObserver.md │ │ └── createSelectorQuery.md │ ├── app-config.md │ ├── babel-config.md │ ├── best-practice.md │ ├── children.md │ ├── cli.md │ ├── codebase-overview.md │ ├── come-from-miniapp.mdx │ ├── communicate.mdx │ ├── compile-optimized.mdx │ ├── complier-mode.mdx │ ├── component-style.md │ ├── components-desc.mdx │ ├── components │ ├── base │ │ ├── icon.md │ │ ├── progress.md │ │ ├── rich-text.md │ │ └── text.md │ ├── canvas │ │ └── canvas.md │ ├── common.md │ ├── event.md │ ├── forms │ │ ├── button.md │ │ ├── checkbox-group.md │ │ ├── checkbox.md │ │ ├── editor.md │ │ ├── form.md │ │ ├── input.md │ │ ├── keyboard-accessory.md │ │ ├── label.md │ │ ├── picker-view-column.md │ │ ├── picker-view.md │ │ ├── picker.md │ │ ├── radio-group.md │ │ ├── radio.md │ │ ├── slider.md │ │ ├── switch.md │ │ └── textarea.md │ ├── maps │ │ └── map.md │ ├── media │ │ ├── animation-video.md │ │ ├── animation-view.md │ │ ├── ar-camera.md │ │ ├── audio.md │ │ ├── camera.md │ │ ├── channel-live.md │ │ ├── channel-video.md │ │ ├── image.md │ │ ├── live-player.md │ │ ├── live-pusher.md │ │ ├── lottie.md │ │ ├── rtc-room-item.md │ │ ├── rtc-room.md │ │ ├── video.md │ │ └── voip-room.md │ ├── navig │ │ ├── functional-page-navigator.md │ │ ├── navigation-bar.md │ │ ├── navigator.md │ │ ├── tab-item.md │ │ └── tabs.md │ ├── open │ │ ├── ad-custom.md │ │ ├── ad.md │ │ ├── aweme-data.md │ │ ├── comment-detail.md │ │ ├── comment-list.md │ │ ├── contact-button.md │ │ ├── follow-swan.md │ │ ├── inline-payment-panel.md │ │ ├── lifestyle.md │ │ ├── like.md │ │ ├── login.md │ │ ├── official-account.md │ │ ├── open-data.md │ │ ├── others.md │ │ └── web-view.md │ ├── page-meta.md │ ├── skyline │ │ ├── draggable-sheet.md │ │ ├── grid-builder.md │ │ ├── grid-view.md │ │ ├── list-builder.md │ │ ├── list-view.md │ │ ├── nested-scroll-body.md │ │ ├── nested-scroll-header.md │ │ ├── open-container.md │ │ ├── share-element.md │ │ ├── snapshot.md │ │ ├── span.md │ │ ├── sticky-header.md │ │ └── sticky-section.md │ └── viewContainer │ │ ├── cover-image.md │ │ ├── cover-view.md │ │ ├── custom-wrapper.md │ │ ├── match-media.md │ │ ├── movable-area.md │ │ ├── movable-view.md │ │ ├── native-slot.md │ │ ├── page-container.md │ │ ├── root-portal.md │ │ ├── script.md │ │ ├── scroll-view.md │ │ ├── slot.md │ │ ├── swiper-item.md │ │ ├── swiper.md │ │ └── view.md │ ├── composition-api.md │ ├── composition.md │ ├── condition.md │ ├── config-detail.md │ ├── config.md │ ├── context.md │ ├── convert-to-react.md │ ├── css-in-js.mdx │ ├── css-modules.md │ ├── custom-tabbar.mdx │ ├── debug-config.md │ ├── debug.md │ ├── difference-to-others.md │ ├── duxapp.md │ ├── dynamic-import.md │ ├── env-mode-config.md │ ├── envs-debug.md │ ├── envs.md │ ├── event.md │ ├── external-libraries.md │ ├── folder.md │ ├── functional-component.md │ ├── guide.mdx │ ├── h5.md │ ├── harmony-hybrid │ └── index.md │ ├── harmony.md │ ├── hooks.md │ ├── html.mdx │ ├── hybrid.mdx │ ├── implement-note.md │ ├── independent-subpackage.md │ ├── join-in.md │ ├── jquery-like.md │ ├── jsx.md │ ├── list.md │ ├── mdx │ └── image-list.tsx │ ├── migration.md │ ├── mini-split-chunks-plugin.md │ ├── mini-troubleshooting.md │ ├── miniprogram-plugin.md │ ├── mobx.md │ ├── news.js │ ├── nutui.mdx │ ├── optimized.mdx │ ├── ossa.md │ ├── page-config.mdx │ ├── pinia.md │ ├── platform-plugin │ ├── how.md │ ├── index.md │ ├── platform-mini.md │ ├── platform-web.md │ ├── reconciler.md │ └── template.md │ ├── plugin-custom.md │ ├── plugin-mini-ci.md │ ├── plugin.md │ ├── preact.md │ ├── prebundle.md │ ├── prerender.md │ ├── project-config.md │ ├── props.md │ ├── quick-app.md │ ├── react-18.md │ ├── react-devtools.md │ ├── react-entry.mdx │ ├── react-error-handling.mdx │ ├── react-native-remind.md │ ├── react-native.md │ ├── react-overall.md │ ├── react-page.mdx │ ├── redux.md │ ├── ref.mdx │ ├── relations.md │ ├── render-props.md │ ├── report.md │ ├── request.md │ ├── router-extend.mdx │ ├── router.mdx │ ├── seowhy.md │ ├── size.md │ ├── spec-for-taro.md │ ├── specials.md │ ├── state.md │ ├── static-reference.md │ ├── tailwindcss.mdx │ ├── taro-dom.md │ ├── taro-in-miniapp.mdx │ ├── taro-quickapp-manifest.md │ ├── taroize-troubleshooting.md │ ├── taroize.md │ ├── team │ ├── 58anjuke.md │ ├── components.tsx │ ├── index.mdx │ ├── role-collaborator.mdx │ ├── role-committee.mdx │ ├── role-committer.mdx │ ├── role-triage.mdx │ ├── team-community.mdx │ ├── team-core.mdx │ ├── team-innovate.mdx │ ├── team-platform.mdx │ └── team-plugin.mdx │ ├── template.md │ ├── test-utils │ ├── fire-event.md │ ├── index.md │ ├── life-cycle.md │ ├── other.md │ ├── queries.md │ └── render.md │ ├── treasures.md │ ├── ui-lib.md │ ├── use-h5.mdx │ ├── vant.mdx │ ├── version.md │ ├── virtual-list.mdx │ ├── virtual-waterfall.mdx │ ├── vue-devtools.md │ ├── vue-entry.mdx │ ├── vue-overall.mdx │ ├── vue-page.mdx │ ├── vue3.md │ ├── vuex.md │ ├── wxcloudbase.md │ └── youshu.md ├── versioned_sidebars ├── version-1.x-sidebars.json ├── version-2.x-sidebars.json └── version-3.x-sidebars.json └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/committee_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/ISSUE_TEMPLATE/committee_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/triage_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/ISSUE_TEMPLATE/triage_issue.md -------------------------------------------------------------------------------- /.github/workflows/deploy-github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/workflows/deploy-github.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/workflows/deploy-preview.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-tcb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/workflows/deploy-tcb.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/notion-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/workflows/notion-update.yml -------------------------------------------------------------------------------- /.github/workflows/sync-components-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.github/workflows/sync-components-types.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | pnpm lint-staged --allow-empty 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/2018-06-07-Taro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2018-06-07-Taro.md -------------------------------------------------------------------------------- /blog/2018-06-25-the-birth-of-taro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2018-06-25-the-birth-of-taro.md -------------------------------------------------------------------------------- /blog/2018-08-24-the-birth-of-taro-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2018-08-24-the-birth-of-taro-ui.md -------------------------------------------------------------------------------- /blog/2018-09-11-taro-in-jd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2018-09-11-taro-in-jd.md -------------------------------------------------------------------------------- /blog/2018-09-18-taro-1-0-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2018-09-18-taro-1-0-0.md -------------------------------------------------------------------------------- /blog/2018-11-05-taro-1-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2018-11-05-taro-1-1.md -------------------------------------------------------------------------------- /blog/2018-12-18-taro-1-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2018-12-18-taro-1-2.md -------------------------------------------------------------------------------- /blog/2019-02-25-taro-ui-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-02-25-taro-ui-2.0.md -------------------------------------------------------------------------------- /blog/2019-02-28-taro-h5-optimize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-02-28-taro-h5-optimize.md -------------------------------------------------------------------------------- /blog/2019-06-13-taro-1-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-06-13-taro-1-3.md -------------------------------------------------------------------------------- /blog/2019-06-21-taro-ext-club.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-06-21-taro-ext-club.md -------------------------------------------------------------------------------- /blog/2019-07-10-taro-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-07-10-taro-hooks.md -------------------------------------------------------------------------------- /blog/2019-09-25-taro-flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-09-25-taro-flex.md -------------------------------------------------------------------------------- /blog/2019-10-24-taro-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-10-24-taro-open.md -------------------------------------------------------------------------------- /blog/2019-12-03-jingxi-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2019-12-03-jingxi-index.md -------------------------------------------------------------------------------- /blog/2020-01-02-gmtc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-01-02-gmtc.md -------------------------------------------------------------------------------- /blog/2020-01-08-taro-2-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-01-08-taro-2-0.md -------------------------------------------------------------------------------- /blog/2020-02-13-taro-next-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-02-13-taro-next-alpha.md -------------------------------------------------------------------------------- /blog/2020-04-27-taro-build-jd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-04-27-taro-build-jd.md -------------------------------------------------------------------------------- /blog/2020-04-27-taro-vs-jd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-04-27-taro-vs-jd.md -------------------------------------------------------------------------------- /blog/2020-05-26-taro-3-rc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-05-26-taro-3-rc.md -------------------------------------------------------------------------------- /blog/2020-07-01-taro-3-0-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-07-01-taro-3-0-0.md -------------------------------------------------------------------------------- /blog/2020-09-01-taro-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-09-01-taro-versions.md -------------------------------------------------------------------------------- /blog/2020-12-02-taro-3-2-0-cannary-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-12-02-taro-3-2-0-cannary-1.md -------------------------------------------------------------------------------- /blog/2020-12-15-taro-3-1-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-12-15-taro-3-1-beta.md -------------------------------------------------------------------------------- /blog/2020-4-13-taro-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2020-4-13-taro-components.md -------------------------------------------------------------------------------- /blog/2021-02-08-taro-jxpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-02-08-taro-jxpp.md -------------------------------------------------------------------------------- /blog/2021-03-10-taro-3-1-lts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-03-10-taro-3-1-lts.md -------------------------------------------------------------------------------- /blog/2021-04-08-taro-3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-04-08-taro-3.2.md -------------------------------------------------------------------------------- /blog/2021-04-22-Taro-3.3-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-04-22-Taro-3.3-alpha.md -------------------------------------------------------------------------------- /blog/2021-08-13-Taro-3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-08-13-Taro-3.3.md -------------------------------------------------------------------------------- /blog/2021-10-14-Taro-React-Native-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-10-14-Taro-React-Native-update.md -------------------------------------------------------------------------------- /blog/2021-11-24-Taro-3.4-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-11-24-Taro-3.4-beta.md -------------------------------------------------------------------------------- /blog/2021-12-08-Taro-3.5-canary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2021-12-08-Taro-3.5-canary.md -------------------------------------------------------------------------------- /blog/2022-01-19-how-to-join-Taro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2022-01-19-how-to-join-Taro.md -------------------------------------------------------------------------------- /blog/2022-01-20-Taro-3.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2022-01-20-Taro-3.4.md -------------------------------------------------------------------------------- /blog/2022-03-24-Taro-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2022-03-24-Taro-feature.md -------------------------------------------------------------------------------- /blog/2022-03-29-Taro-community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2022-03-29-Taro-community.md -------------------------------------------------------------------------------- /blog/2022-05-19-Taro-3.5-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2022-05-19-Taro-3.5-beta.md -------------------------------------------------------------------------------- /blog/2022-07-26-Taro-3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2022-07-26-Taro-3.5.md -------------------------------------------------------------------------------- /blog/2022-11-18-Taro-3.6-canary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2022-11-18-Taro-3.6-canary.md -------------------------------------------------------------------------------- /blog/2023-02-01-Taro-3.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2023-02-01-Taro-3.6.md -------------------------------------------------------------------------------- /blog/2023-03-29-D2_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2023-03-29-D2_17.md -------------------------------------------------------------------------------- /blog/2024-01-18-harmony-hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2024-01-18-harmony-hybrid.md -------------------------------------------------------------------------------- /blog/2024-09-11-harmony-high-performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2024-09-11-harmony-high-performance.md -------------------------------------------------------------------------------- /blog/2024-09-29-harmony-react-on-arkts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2024-09-29-harmony-react-on-arkts.md -------------------------------------------------------------------------------- /blog/2024-10-16-harmony-w3c-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2024-10-16-harmony-w3c-css.md -------------------------------------------------------------------------------- /blog/2024-11-01-harmony-native-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2024-11-01-harmony-native-events.md -------------------------------------------------------------------------------- /blog/2024-11-14-harmony-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2024-11-14-harmony-image.md -------------------------------------------------------------------------------- /blog/2024-11-22-harmony-virtual-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2024-11-22-harmony-virtual-list.md -------------------------------------------------------------------------------- /blog/2025-04-23-taro-on-harmony.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2025-04-23-taro-on-harmony.md -------------------------------------------------------------------------------- /blog/2025-05-16-taro-harmony-c-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/2025-05-16-taro-harmony-c-api.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/CONTRIBUTING-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/CONTRIBUTING-GUIDE.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/GETTING-STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/GETTING-STARTED.md -------------------------------------------------------------------------------- /docs/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/README.mdx -------------------------------------------------------------------------------- /docs/apis/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/General.md -------------------------------------------------------------------------------- /docs/apis/about/desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/about/desc.md -------------------------------------------------------------------------------- /docs/apis/about/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/about/env.md -------------------------------------------------------------------------------- /docs/apis/about/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/about/events.md -------------------------------------------------------------------------------- /docs/apis/about/tarocomponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/about/tarocomponent.md -------------------------------------------------------------------------------- /docs/apis/ad/InterstitialAd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ad/InterstitialAd.md -------------------------------------------------------------------------------- /docs/apis/ad/RewardedVideoAd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ad/RewardedVideoAd.md -------------------------------------------------------------------------------- /docs/apis/ad/createInterstitialAd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ad/createInterstitialAd.md -------------------------------------------------------------------------------- /docs/apis/ad/createRewardedVideoAd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ad/createRewardedVideoAd.md -------------------------------------------------------------------------------- /docs/apis/ai/face/faceDetect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/face/faceDetect.md -------------------------------------------------------------------------------- /docs/apis/ai/face/initFaceDetect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/face/initFaceDetect.md -------------------------------------------------------------------------------- /docs/apis/ai/face/stopFaceDetect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/face/stopFaceDetect.md -------------------------------------------------------------------------------- /docs/apis/ai/inference/InferenceSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/inference/InferenceSession.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKBodyAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKBodyAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKCamera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKCamera.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKDepthAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKDepthAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKFaceAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKFaceAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKFrame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKFrame.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKHandAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKHandAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKMarkerAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKMarkerAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKOCRAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKOCRAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKOSDAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKOSDAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKPlaneAnchor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKPlaneAnchor.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/VKSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/VKSession.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/createVKSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/createVKSession.md -------------------------------------------------------------------------------- /docs/apis/ai/visionkit/isVKSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ai/visionkit/isVKSupport.md -------------------------------------------------------------------------------- /docs/apis/alipay/getOpenUserInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/alipay/getOpenUserInfo.md -------------------------------------------------------------------------------- /docs/apis/alipay/tradePay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/alipay/tradePay.md -------------------------------------------------------------------------------- /docs/apis/base/arrayBufferToBase64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/arrayBufferToBase64.md -------------------------------------------------------------------------------- /docs/apis/base/base64ToArrayBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/base64ToArrayBuffer.md -------------------------------------------------------------------------------- /docs/apis/base/canIUse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/canIUse.md -------------------------------------------------------------------------------- /docs/apis/base/canIUseWebp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/canIUseWebp.md -------------------------------------------------------------------------------- /docs/apis/base/crypto/UserCryptoManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/crypto/UserCryptoManager.md -------------------------------------------------------------------------------- /docs/apis/base/crypto/getRandomValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/crypto/getRandomValues.md -------------------------------------------------------------------------------- /docs/apis/base/debug/LogManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/debug/LogManager.md -------------------------------------------------------------------------------- /docs/apis/base/debug/RealtimeLogManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/debug/RealtimeLogManager.md -------------------------------------------------------------------------------- /docs/apis/base/debug/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/debug/console.md -------------------------------------------------------------------------------- /docs/apis/base/debug/getLogManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/debug/getLogManager.md -------------------------------------------------------------------------------- /docs/apis/base/debug/setEnableDebug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/debug/setEnableDebug.md -------------------------------------------------------------------------------- /docs/apis/base/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/env.md -------------------------------------------------------------------------------- /docs/apis/base/env/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/env/env.md -------------------------------------------------------------------------------- /docs/apis/base/performance/EntryList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/performance/EntryList.md -------------------------------------------------------------------------------- /docs/apis/base/performance/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/performance/Performance.md -------------------------------------------------------------------------------- /docs/apis/base/performance/preloadAssets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/performance/preloadAssets.md -------------------------------------------------------------------------------- /docs/apis/base/preload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/preload.md -------------------------------------------------------------------------------- /docs/apis/base/system/getAppBaseInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/system/getAppBaseInfo.md -------------------------------------------------------------------------------- /docs/apis/base/system/getDeviceInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/system/getDeviceInfo.md -------------------------------------------------------------------------------- /docs/apis/base/system/getSkylineInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/system/getSkylineInfo.md -------------------------------------------------------------------------------- /docs/apis/base/system/getSkylineInfoSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/system/getSkylineInfoSync.md -------------------------------------------------------------------------------- /docs/apis/base/system/getSystemInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/system/getSystemInfo.md -------------------------------------------------------------------------------- /docs/apis/base/system/getWindowInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/system/getWindowInfo.md -------------------------------------------------------------------------------- /docs/apis/base/update/UpdateManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/update/UpdateManager.md -------------------------------------------------------------------------------- /docs/apis/base/update/updateWeChatApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/base/update/updateWeChatApp.md -------------------------------------------------------------------------------- /docs/apis/canvas/Canvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/Canvas.md -------------------------------------------------------------------------------- /docs/apis/canvas/CanvasContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/CanvasContext.md -------------------------------------------------------------------------------- /docs/apis/canvas/CanvasGradient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/CanvasGradient.md -------------------------------------------------------------------------------- /docs/apis/canvas/Color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/Color.md -------------------------------------------------------------------------------- /docs/apis/canvas/Image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/Image.md -------------------------------------------------------------------------------- /docs/apis/canvas/ImageData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/ImageData.md -------------------------------------------------------------------------------- /docs/apis/canvas/OffscreenCanvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/OffscreenCanvas.md -------------------------------------------------------------------------------- /docs/apis/canvas/Path2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/Path2D.md -------------------------------------------------------------------------------- /docs/apis/canvas/RenderingContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/RenderingContext.md -------------------------------------------------------------------------------- /docs/apis/canvas/canvasGetImageData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/canvasGetImageData.md -------------------------------------------------------------------------------- /docs/apis/canvas/canvasPutImageData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/canvasPutImageData.md -------------------------------------------------------------------------------- /docs/apis/canvas/canvasToTempFilePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/canvasToTempFilePath.md -------------------------------------------------------------------------------- /docs/apis/canvas/createCanvasContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/createCanvasContext.md -------------------------------------------------------------------------------- /docs/apis/canvas/createContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/createContext.md -------------------------------------------------------------------------------- /docs/apis/canvas/drawCanvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/drawCanvas.md -------------------------------------------------------------------------------- /docs/apis/canvas/toTempFilePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/canvas/toTempFilePath.md -------------------------------------------------------------------------------- /docs/apis/cloud/DB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/cloud/DB.md -------------------------------------------------------------------------------- /docs/apis/cloud/cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/cloud/cloud.md -------------------------------------------------------------------------------- /docs/apis/data-analysis/reportEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/data-analysis/reportEvent.md -------------------------------------------------------------------------------- /docs/apis/data-analysis/reportMonitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/data-analysis/reportMonitor.md -------------------------------------------------------------------------------- /docs/apis/device/compass/startCompass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/compass/startCompass.md -------------------------------------------------------------------------------- /docs/apis/device/compass/stopCompass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/compass/stopCompass.md -------------------------------------------------------------------------------- /docs/apis/device/iBeacon/IBeaconInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/iBeacon/IBeaconInfo.md -------------------------------------------------------------------------------- /docs/apis/device/iBeacon/getBeacons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/iBeacon/getBeacons.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/IsoDep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/IsoDep.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/MifareClassic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/MifareClassic.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/MifareUltralight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/MifareUltralight.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/NFCAdapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/NFCAdapter.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/Ndef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/Ndef.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/NfcA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/NfcA.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/NfcB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/NfcB.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/NfcF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/NfcF.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/NfcV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/NfcV.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/getHCEState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/getHCEState.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/getNFCAdapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/getNFCAdapter.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/offHCEMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/offHCEMessage.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/onHCEMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/onHCEMessage.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/sendHCEMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/sendHCEMessage.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/startHCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/startHCE.md -------------------------------------------------------------------------------- /docs/apis/device/nfc/stopHCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/nfc/stopHCE.md -------------------------------------------------------------------------------- /docs/apis/device/phone/makePhoneCall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/phone/makePhoneCall.md -------------------------------------------------------------------------------- /docs/apis/device/scan/scanCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/scan/scanCode.md -------------------------------------------------------------------------------- /docs/apis/device/sms/sendSms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/sms/sendSms.md -------------------------------------------------------------------------------- /docs/apis/device/vibrate/vibrateLong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/vibrate/vibrateLong.md -------------------------------------------------------------------------------- /docs/apis/device/vibrate/vibrateShort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/vibrate/vibrateShort.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/WifiInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/WifiInfo.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/connectWifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/connectWifi.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/getWifiList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/getWifiList.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/offGetWifiList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/offGetWifiList.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/onGetWifiList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/onGetWifiList.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/onWifiConnected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/onWifiConnected.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/setWifiList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/setWifiList.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/startWifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/startWifi.md -------------------------------------------------------------------------------- /docs/apis/device/wifi/stopWifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/device/wifi/stopWifi.md -------------------------------------------------------------------------------- /docs/apis/ext/getExtConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ext/getExtConfig.md -------------------------------------------------------------------------------- /docs/apis/ext/getExtConfigSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ext/getExtConfigSync.md -------------------------------------------------------------------------------- /docs/apis/files/FileSystemManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/FileSystemManager.md -------------------------------------------------------------------------------- /docs/apis/files/ReadResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/ReadResult.md -------------------------------------------------------------------------------- /docs/apis/files/Stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/Stats.md -------------------------------------------------------------------------------- /docs/apis/files/WriteResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/WriteResult.md -------------------------------------------------------------------------------- /docs/apis/files/getFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/getFileInfo.md -------------------------------------------------------------------------------- /docs/apis/files/getFileSystemManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/getFileSystemManager.md -------------------------------------------------------------------------------- /docs/apis/files/getSavedFileInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/getSavedFileInfo.md -------------------------------------------------------------------------------- /docs/apis/files/getSavedFileList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/getSavedFileList.md -------------------------------------------------------------------------------- /docs/apis/files/openDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/openDocument.md -------------------------------------------------------------------------------- /docs/apis/files/removeSavedFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/removeSavedFile.md -------------------------------------------------------------------------------- /docs/apis/files/saveFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/saveFile.md -------------------------------------------------------------------------------- /docs/apis/files/saveFileToDisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/files/saveFileToDisk.md -------------------------------------------------------------------------------- /docs/apis/framework/App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/framework/App.md -------------------------------------------------------------------------------- /docs/apis/framework/Page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/framework/Page.md -------------------------------------------------------------------------------- /docs/apis/framework/getApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/framework/getApp.md -------------------------------------------------------------------------------- /docs/apis/framework/getCurrentPages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/framework/getCurrentPages.md -------------------------------------------------------------------------------- /docs/apis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/index.md -------------------------------------------------------------------------------- /docs/apis/location/chooseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/chooseLocation.md -------------------------------------------------------------------------------- /docs/apis/location/choosePoi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/choosePoi.md -------------------------------------------------------------------------------- /docs/apis/location/getFuzzyLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/getFuzzyLocation.md -------------------------------------------------------------------------------- /docs/apis/location/getLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/getLocation.md -------------------------------------------------------------------------------- /docs/apis/location/offLocationChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/offLocationChange.md -------------------------------------------------------------------------------- /docs/apis/location/onLocationChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/onLocationChange.md -------------------------------------------------------------------------------- /docs/apis/location/openLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/openLocation.md -------------------------------------------------------------------------------- /docs/apis/location/stopLocationUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/location/stopLocationUpdate.md -------------------------------------------------------------------------------- /docs/apis/media/audio/AudioBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/audio/AudioBuffer.md -------------------------------------------------------------------------------- /docs/apis/media/audio/AudioContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/audio/AudioContext.md -------------------------------------------------------------------------------- /docs/apis/media/audio/WebAudioContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/audio/WebAudioContext.md -------------------------------------------------------------------------------- /docs/apis/media/audio/pauseVoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/audio/pauseVoice.md -------------------------------------------------------------------------------- /docs/apis/media/audio/playVoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/audio/playVoice.md -------------------------------------------------------------------------------- /docs/apis/media/audio/stopVoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/audio/stopVoice.md -------------------------------------------------------------------------------- /docs/apis/media/camera/CameraContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/camera/CameraContext.md -------------------------------------------------------------------------------- /docs/apis/media/editor/EditorContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/editor/EditorContext.md -------------------------------------------------------------------------------- /docs/apis/media/image/chooseImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/image/chooseImage.md -------------------------------------------------------------------------------- /docs/apis/media/image/compressImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/image/compressImage.md -------------------------------------------------------------------------------- /docs/apis/media/image/cropImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/image/cropImage.md -------------------------------------------------------------------------------- /docs/apis/media/image/editImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/image/editImage.md -------------------------------------------------------------------------------- /docs/apis/media/image/getImageInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/image/getImageInfo.md -------------------------------------------------------------------------------- /docs/apis/media/image/previewImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/image/previewImage.md -------------------------------------------------------------------------------- /docs/apis/media/image/previewMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/image/previewMedia.md -------------------------------------------------------------------------------- /docs/apis/media/map/MapContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/map/MapContext.md -------------------------------------------------------------------------------- /docs/apis/media/map/createMapContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/map/createMapContext.md -------------------------------------------------------------------------------- /docs/apis/media/recorder/startRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/recorder/startRecord.md -------------------------------------------------------------------------------- /docs/apis/media/recorder/stopRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/recorder/stopRecord.md -------------------------------------------------------------------------------- /docs/apis/media/video/VideoContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/video/VideoContext.md -------------------------------------------------------------------------------- /docs/apis/media/video/chooseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/video/chooseMedia.md -------------------------------------------------------------------------------- /docs/apis/media/video/chooseVideo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/video/chooseVideo.md -------------------------------------------------------------------------------- /docs/apis/media/video/compressVideo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/video/compressVideo.md -------------------------------------------------------------------------------- /docs/apis/media/video/getVideoInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/video/getVideoInfo.md -------------------------------------------------------------------------------- /docs/apis/media/video/openVideoEditor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/video/openVideoEditor.md -------------------------------------------------------------------------------- /docs/apis/media/voip/exitVoIPChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/voip/exitVoIPChat.md -------------------------------------------------------------------------------- /docs/apis/media/voip/join1v1Chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/voip/join1v1Chat.md -------------------------------------------------------------------------------- /docs/apis/media/voip/joinVoIPChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/voip/joinVoIPChat.md -------------------------------------------------------------------------------- /docs/apis/media/voip/setEnable1v1Chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/media/voip/setEnable1v1Chat.md -------------------------------------------------------------------------------- /docs/apis/navigate/exitMiniProgram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/navigate/exitMiniProgram.md -------------------------------------------------------------------------------- /docs/apis/navigate/openBusinessView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/navigate/openBusinessView.md -------------------------------------------------------------------------------- /docs/apis/network/request/RequestTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/request/RequestTask.md -------------------------------------------------------------------------------- /docs/apis/network/request/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/request/request.md -------------------------------------------------------------------------------- /docs/apis/network/tcp/TCPSocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/tcp/TCPSocket.md -------------------------------------------------------------------------------- /docs/apis/network/tcp/createTCPSocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/tcp/createTCPSocket.md -------------------------------------------------------------------------------- /docs/apis/network/udp/UDPSocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/udp/UDPSocket.md -------------------------------------------------------------------------------- /docs/apis/network/udp/createUDPSocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/udp/createUDPSocket.md -------------------------------------------------------------------------------- /docs/apis/network/upload/UploadTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/upload/UploadTask.md -------------------------------------------------------------------------------- /docs/apis/network/upload/uploadFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/network/upload/uploadFile.md -------------------------------------------------------------------------------- /docs/apis/open-api/card/addCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/card/addCard.md -------------------------------------------------------------------------------- /docs/apis/open-api/card/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/card/card.md -------------------------------------------------------------------------------- /docs/apis/open-api/card/openCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/card/openCard.md -------------------------------------------------------------------------------- /docs/apis/open-api/login/checkSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/login/checkSession.md -------------------------------------------------------------------------------- /docs/apis/open-api/login/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/login/login.md -------------------------------------------------------------------------------- /docs/apis/open-api/login/pluginLogin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/login/pluginLogin.md -------------------------------------------------------------------------------- /docs/apis/open-api/user-info/UserInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/user-info/UserInfo.md -------------------------------------------------------------------------------- /docs/apis/open-api/werun/getWeRunData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/werun/getWeRunData.md -------------------------------------------------------------------------------- /docs/apis/open-api/werun/shareToWeRun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/open-api/werun/shareToWeRun.md -------------------------------------------------------------------------------- /docs/apis/payment/faceVerifyForPay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/payment/faceVerifyForPay.md -------------------------------------------------------------------------------- /docs/apis/payment/requestOrderPayment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/payment/requestOrderPayment.md -------------------------------------------------------------------------------- /docs/apis/payment/requestPayment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/payment/requestPayment.md -------------------------------------------------------------------------------- /docs/apis/qq/addRecentColorSign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/addRecentColorSign.md -------------------------------------------------------------------------------- /docs/apis/qq/applyAddToMyApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/applyAddToMyApps.md -------------------------------------------------------------------------------- /docs/apis/qq/getGuildInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/getGuildInfo.md -------------------------------------------------------------------------------- /docs/apis/qq/getQQRunData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/getQQRunData.md -------------------------------------------------------------------------------- /docs/apis/qq/isAddedToMyApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/isAddedToMyApps.md -------------------------------------------------------------------------------- /docs/apis/qq/openQzonePublish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/openQzonePublish.md -------------------------------------------------------------------------------- /docs/apis/qq/setCustomDress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/setCustomDress.md -------------------------------------------------------------------------------- /docs/apis/qq/setOfficialDress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/setOfficialDress.md -------------------------------------------------------------------------------- /docs/apis/qq/updateQQApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/qq/updateQQApp.md -------------------------------------------------------------------------------- /docs/apis/route/EventChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/route/EventChannel.md -------------------------------------------------------------------------------- /docs/apis/route/navigateBack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/route/navigateBack.md -------------------------------------------------------------------------------- /docs/apis/route/navigateTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/route/navigateTo.md -------------------------------------------------------------------------------- /docs/apis/route/reLaunch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/route/reLaunch.md -------------------------------------------------------------------------------- /docs/apis/route/redirectTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/route/redirectTo.md -------------------------------------------------------------------------------- /docs/apis/route/router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/route/router.md -------------------------------------------------------------------------------- /docs/apis/route/switchTab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/route/switchTab.md -------------------------------------------------------------------------------- /docs/apis/share/authPrivateMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/authPrivateMessage.md -------------------------------------------------------------------------------- /docs/apis/share/getShareInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/getShareInfo.md -------------------------------------------------------------------------------- /docs/apis/share/hideShareMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/hideShareMenu.md -------------------------------------------------------------------------------- /docs/apis/share/offCopyUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/offCopyUrl.md -------------------------------------------------------------------------------- /docs/apis/share/onCopyUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/onCopyUrl.md -------------------------------------------------------------------------------- /docs/apis/share/shareFileMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/shareFileMessage.md -------------------------------------------------------------------------------- /docs/apis/share/shareVideoMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/shareVideoMessage.md -------------------------------------------------------------------------------- /docs/apis/share/showShareImageMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/showShareImageMenu.md -------------------------------------------------------------------------------- /docs/apis/share/showShareMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/showShareMenu.md -------------------------------------------------------------------------------- /docs/apis/share/updateShareMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/share/updateShareMenu.md -------------------------------------------------------------------------------- /docs/apis/skyline/Snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/skyline/Snapshot.md -------------------------------------------------------------------------------- /docs/apis/skyline/worklet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/skyline/worklet.md -------------------------------------------------------------------------------- /docs/apis/storage/batchGetStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/batchGetStorage.md -------------------------------------------------------------------------------- /docs/apis/storage/batchGetStorageSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/batchGetStorageSync.md -------------------------------------------------------------------------------- /docs/apis/storage/batchSetStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/batchSetStorage.md -------------------------------------------------------------------------------- /docs/apis/storage/batchSetStorageSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/batchSetStorageSync.md -------------------------------------------------------------------------------- /docs/apis/storage/clearStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/clearStorage.md -------------------------------------------------------------------------------- /docs/apis/storage/clearStorageSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/clearStorageSync.md -------------------------------------------------------------------------------- /docs/apis/storage/createBufferURL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/createBufferURL.md -------------------------------------------------------------------------------- /docs/apis/storage/getStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/getStorage.md -------------------------------------------------------------------------------- /docs/apis/storage/getStorageInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/getStorageInfo.md -------------------------------------------------------------------------------- /docs/apis/storage/getStorageInfoSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/getStorageInfoSync.md -------------------------------------------------------------------------------- /docs/apis/storage/getStorageSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/getStorageSync.md -------------------------------------------------------------------------------- /docs/apis/storage/removeStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/removeStorage.md -------------------------------------------------------------------------------- /docs/apis/storage/removeStorageSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/removeStorageSync.md -------------------------------------------------------------------------------- /docs/apis/storage/revokeBufferURL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/revokeBufferURL.md -------------------------------------------------------------------------------- /docs/apis/storage/setStorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/setStorage.md -------------------------------------------------------------------------------- /docs/apis/storage/setStorageSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/storage/setStorageSync.md -------------------------------------------------------------------------------- /docs/apis/swan/getFavorStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/getFavorStatus.md -------------------------------------------------------------------------------- /docs/apis/swan/getSystemRiskInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/getSystemRiskInfo.md -------------------------------------------------------------------------------- /docs/apis/swan/getTopStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/getTopStatus.md -------------------------------------------------------------------------------- /docs/apis/swan/openBdboxWebview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/openBdboxWebview.md -------------------------------------------------------------------------------- /docs/apis/swan/setDocumentTitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/setDocumentTitle.md -------------------------------------------------------------------------------- /docs/apis/swan/setMetaDescription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/setMetaDescription.md -------------------------------------------------------------------------------- /docs/apis/swan/setMetaKeywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/setMetaKeywords.md -------------------------------------------------------------------------------- /docs/apis/swan/setPageInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/swan/setPageInfo.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/eventCenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/eventCenter.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/getAppInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/getAppInfo.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/getEnv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/getEnv.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/getEnvInfoSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/getEnvInfoSync.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/getRenderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/getRenderer.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/getTabBar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/getTabBar.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/initPxTransform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/initPxTransform.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/interceptorify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/interceptorify.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/pxTransform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/pxTransform.md -------------------------------------------------------------------------------- /docs/apis/taro.extend/requirePlugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.extend/requirePlugin.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useDidHide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useDidHide.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useDidShow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useDidShow.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useError.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useLaunch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useLaunch.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useLoad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useLoad.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/usePageNotFound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/usePageNotFound.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/usePageScroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/usePageScroll.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/usePullIntercept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/usePullIntercept.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useReachBottom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useReachBottom.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useReady.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useReady.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useResize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useResize.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useRouter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useRouter.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useSaveExitState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useSaveExitState.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useShareTimeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useShareTimeline.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useTabItemTap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useTabItemTap.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useTitleClick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useTitleClick.md -------------------------------------------------------------------------------- /docs/apis/taro.hooks/useUnload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/taro.hooks/useUnload.md -------------------------------------------------------------------------------- /docs/apis/ui/animation/Animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/animation/Animation.md -------------------------------------------------------------------------------- /docs/apis/ui/fonts/loadFontFace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/fonts/loadFontFace.md -------------------------------------------------------------------------------- /docs/apis/ui/interaction/hideLoading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/interaction/hideLoading.md -------------------------------------------------------------------------------- /docs/apis/ui/interaction/hideToast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/interaction/hideToast.md -------------------------------------------------------------------------------- /docs/apis/ui/interaction/showLoading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/interaction/showLoading.md -------------------------------------------------------------------------------- /docs/apis/ui/interaction/showModal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/interaction/showModal.md -------------------------------------------------------------------------------- /docs/apis/ui/interaction/showToast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/interaction/showToast.md -------------------------------------------------------------------------------- /docs/apis/ui/scroll/ScrollViewContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/scroll/ScrollViewContext.md -------------------------------------------------------------------------------- /docs/apis/ui/scroll/pageScrollTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/scroll/pageScrollTo.md -------------------------------------------------------------------------------- /docs/apis/ui/sticky/setTopBarText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/sticky/setTopBarText.md -------------------------------------------------------------------------------- /docs/apis/ui/tab-bar/hideTabBar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/tab-bar/hideTabBar.md -------------------------------------------------------------------------------- /docs/apis/ui/tab-bar/hideTabBarRedDot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/tab-bar/hideTabBarRedDot.md -------------------------------------------------------------------------------- /docs/apis/ui/tab-bar/setTabBarBadge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/tab-bar/setTabBarBadge.md -------------------------------------------------------------------------------- /docs/apis/ui/tab-bar/setTabBarItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/tab-bar/setTabBarItem.md -------------------------------------------------------------------------------- /docs/apis/ui/tab-bar/setTabBarStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/tab-bar/setTabBarStyle.md -------------------------------------------------------------------------------- /docs/apis/ui/tab-bar/showTabBar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/tab-bar/showTabBar.md -------------------------------------------------------------------------------- /docs/apis/ui/tab-bar/showTabBarRedDot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/tab-bar/showTabBarRedDot.md -------------------------------------------------------------------------------- /docs/apis/ui/window/offWindowResize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/window/offWindowResize.md -------------------------------------------------------------------------------- /docs/apis/ui/window/onWindowResize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/window/onWindowResize.md -------------------------------------------------------------------------------- /docs/apis/ui/window/setWindowSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/ui/window/setWindowSize.md -------------------------------------------------------------------------------- /docs/apis/worker/Worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/worker/Worker.md -------------------------------------------------------------------------------- /docs/apis/worker/createWorker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/worker/createWorker.md -------------------------------------------------------------------------------- /docs/apis/wxml/IntersectionObserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/wxml/IntersectionObserver.md -------------------------------------------------------------------------------- /docs/apis/wxml/MediaQueryObserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/wxml/MediaQueryObserver.md -------------------------------------------------------------------------------- /docs/apis/wxml/NodesRef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/wxml/NodesRef.md -------------------------------------------------------------------------------- /docs/apis/wxml/SelectorQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/wxml/SelectorQuery.md -------------------------------------------------------------------------------- /docs/apis/wxml/createSelectorQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/apis/wxml/createSelectorQuery.md -------------------------------------------------------------------------------- /docs/app-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/app-config.md -------------------------------------------------------------------------------- /docs/babel-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/babel-config.md -------------------------------------------------------------------------------- /docs/best-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/best-practice.md -------------------------------------------------------------------------------- /docs/children.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/children.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/codebase-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/codebase-overview.md -------------------------------------------------------------------------------- /docs/come-from-miniapp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/come-from-miniapp.mdx -------------------------------------------------------------------------------- /docs/communicate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/communicate.mdx -------------------------------------------------------------------------------- /docs/compile-optimized.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/compile-optimized.mdx -------------------------------------------------------------------------------- /docs/complier-mode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/complier-mode.mdx -------------------------------------------------------------------------------- /docs/component-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/component-style.md -------------------------------------------------------------------------------- /docs/components-desc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components-desc.mdx -------------------------------------------------------------------------------- /docs/components/base/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/base/icon.md -------------------------------------------------------------------------------- /docs/components/base/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/base/progress.md -------------------------------------------------------------------------------- /docs/components/base/rich-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/base/rich-text.md -------------------------------------------------------------------------------- /docs/components/base/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/base/text.md -------------------------------------------------------------------------------- /docs/components/canvas/canvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/canvas/canvas.md -------------------------------------------------------------------------------- /docs/components/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/common.md -------------------------------------------------------------------------------- /docs/components/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/event.md -------------------------------------------------------------------------------- /docs/components/forms/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/button.md -------------------------------------------------------------------------------- /docs/components/forms/checkbox-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/checkbox-group.md -------------------------------------------------------------------------------- /docs/components/forms/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/checkbox.md -------------------------------------------------------------------------------- /docs/components/forms/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/editor.md -------------------------------------------------------------------------------- /docs/components/forms/form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/form.md -------------------------------------------------------------------------------- /docs/components/forms/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/input.md -------------------------------------------------------------------------------- /docs/components/forms/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/label.md -------------------------------------------------------------------------------- /docs/components/forms/picker-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/picker-view.md -------------------------------------------------------------------------------- /docs/components/forms/picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/picker.md -------------------------------------------------------------------------------- /docs/components/forms/radio-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/radio-group.md -------------------------------------------------------------------------------- /docs/components/forms/radio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/radio.md -------------------------------------------------------------------------------- /docs/components/forms/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/slider.md -------------------------------------------------------------------------------- /docs/components/forms/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/switch.md -------------------------------------------------------------------------------- /docs/components/forms/textarea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/forms/textarea.md -------------------------------------------------------------------------------- /docs/components/maps/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/maps/map.md -------------------------------------------------------------------------------- /docs/components/media/animation-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/animation-video.md -------------------------------------------------------------------------------- /docs/components/media/animation-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/animation-view.md -------------------------------------------------------------------------------- /docs/components/media/ar-camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/ar-camera.md -------------------------------------------------------------------------------- /docs/components/media/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/audio.md -------------------------------------------------------------------------------- /docs/components/media/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/camera.md -------------------------------------------------------------------------------- /docs/components/media/channel-live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/channel-live.md -------------------------------------------------------------------------------- /docs/components/media/channel-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/channel-video.md -------------------------------------------------------------------------------- /docs/components/media/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/image.md -------------------------------------------------------------------------------- /docs/components/media/live-player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/live-player.md -------------------------------------------------------------------------------- /docs/components/media/live-pusher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/live-pusher.md -------------------------------------------------------------------------------- /docs/components/media/lottie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/lottie.md -------------------------------------------------------------------------------- /docs/components/media/rtc-room-item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/rtc-room-item.md -------------------------------------------------------------------------------- /docs/components/media/rtc-room.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/rtc-room.md -------------------------------------------------------------------------------- /docs/components/media/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/video.md -------------------------------------------------------------------------------- /docs/components/media/voip-room.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/media/voip-room.md -------------------------------------------------------------------------------- /docs/components/navig/navigation-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/navig/navigation-bar.md -------------------------------------------------------------------------------- /docs/components/navig/navigator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/navig/navigator.md -------------------------------------------------------------------------------- /docs/components/navig/tab-item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/navig/tab-item.md -------------------------------------------------------------------------------- /docs/components/navig/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/navig/tabs.md -------------------------------------------------------------------------------- /docs/components/open/ad-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/ad-custom.md -------------------------------------------------------------------------------- /docs/components/open/ad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/ad.md -------------------------------------------------------------------------------- /docs/components/open/aweme-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/aweme-data.md -------------------------------------------------------------------------------- /docs/components/open/comment-detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/comment-detail.md -------------------------------------------------------------------------------- /docs/components/open/comment-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/comment-list.md -------------------------------------------------------------------------------- /docs/components/open/contact-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/contact-button.md -------------------------------------------------------------------------------- /docs/components/open/follow-swan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/follow-swan.md -------------------------------------------------------------------------------- /docs/components/open/lifestyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/lifestyle.md -------------------------------------------------------------------------------- /docs/components/open/like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/like.md -------------------------------------------------------------------------------- /docs/components/open/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/login.md -------------------------------------------------------------------------------- /docs/components/open/official-account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/official-account.md -------------------------------------------------------------------------------- /docs/components/open/open-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/open-data.md -------------------------------------------------------------------------------- /docs/components/open/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/others.md -------------------------------------------------------------------------------- /docs/components/open/web-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/open/web-view.md -------------------------------------------------------------------------------- /docs/components/page-meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/page-meta.md -------------------------------------------------------------------------------- /docs/components/skyline/grid-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/grid-builder.md -------------------------------------------------------------------------------- /docs/components/skyline/grid-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/grid-view.md -------------------------------------------------------------------------------- /docs/components/skyline/list-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/list-builder.md -------------------------------------------------------------------------------- /docs/components/skyline/list-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/list-view.md -------------------------------------------------------------------------------- /docs/components/skyline/share-element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/share-element.md -------------------------------------------------------------------------------- /docs/components/skyline/snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/snapshot.md -------------------------------------------------------------------------------- /docs/components/skyline/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/span.md -------------------------------------------------------------------------------- /docs/components/skyline/sticky-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/skyline/sticky-header.md -------------------------------------------------------------------------------- /docs/components/viewContainer/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/viewContainer/script.md -------------------------------------------------------------------------------- /docs/components/viewContainer/slot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/viewContainer/slot.md -------------------------------------------------------------------------------- /docs/components/viewContainer/swiper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/viewContainer/swiper.md -------------------------------------------------------------------------------- /docs/components/viewContainer/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/components/viewContainer/view.md -------------------------------------------------------------------------------- /docs/composition-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/composition-api.md -------------------------------------------------------------------------------- /docs/composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/composition.md -------------------------------------------------------------------------------- /docs/condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/condition.md -------------------------------------------------------------------------------- /docs/config-detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/config-detail.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/context.md -------------------------------------------------------------------------------- /docs/convert-to-react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/convert-to-react.md -------------------------------------------------------------------------------- /docs/css-in-js.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/css-in-js.mdx -------------------------------------------------------------------------------- /docs/css-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/css-modules.md -------------------------------------------------------------------------------- /docs/custom-tabbar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/custom-tabbar.mdx -------------------------------------------------------------------------------- /docs/debug-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/debug-config.md -------------------------------------------------------------------------------- /docs/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/debug.md -------------------------------------------------------------------------------- /docs/difference-to-others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/difference-to-others.md -------------------------------------------------------------------------------- /docs/dynamic-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/dynamic-import.md -------------------------------------------------------------------------------- /docs/env-mode-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/env-mode-config.md -------------------------------------------------------------------------------- /docs/envs-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/envs-debug.md -------------------------------------------------------------------------------- /docs/envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/envs.md -------------------------------------------------------------------------------- /docs/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/event.md -------------------------------------------------------------------------------- /docs/external-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/external-libraries.md -------------------------------------------------------------------------------- /docs/folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/folder.md -------------------------------------------------------------------------------- /docs/functional-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/functional-component.md -------------------------------------------------------------------------------- /docs/guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/guide.mdx -------------------------------------------------------------------------------- /docs/h5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/h5.md -------------------------------------------------------------------------------- /docs/harmony/c-api-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/c-api-css.md -------------------------------------------------------------------------------- /docs/harmony/c-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/c-api.md -------------------------------------------------------------------------------- /docs/harmony/hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/hybrid.md -------------------------------------------------------------------------------- /docs/harmony/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/index.md -------------------------------------------------------------------------------- /docs/harmony/lazy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/lazy/index.md -------------------------------------------------------------------------------- /docs/harmony/lazy/reuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/lazy/reuse.md -------------------------------------------------------------------------------- /docs/harmony/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/meta.md -------------------------------------------------------------------------------- /docs/harmony/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/harmony/troubleshooting.md -------------------------------------------------------------------------------- /docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/hooks.md -------------------------------------------------------------------------------- /docs/html.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/html.mdx -------------------------------------------------------------------------------- /docs/hybrid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/hybrid.mdx -------------------------------------------------------------------------------- /docs/implement-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/implement-note.md -------------------------------------------------------------------------------- /docs/independent-subpackage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/independent-subpackage.md -------------------------------------------------------------------------------- /docs/join-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/join-in.md -------------------------------------------------------------------------------- /docs/jquery-like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/jquery-like.md -------------------------------------------------------------------------------- /docs/jsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/jsx.md -------------------------------------------------------------------------------- /docs/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/list.md -------------------------------------------------------------------------------- /docs/mdx/image-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/mdx/image-list.tsx -------------------------------------------------------------------------------- /docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/migration.md -------------------------------------------------------------------------------- /docs/mini-split-chunks-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/mini-split-chunks-plugin.md -------------------------------------------------------------------------------- /docs/mini-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/mini-troubleshooting.md -------------------------------------------------------------------------------- /docs/miniprogram-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/miniprogram-plugin.md -------------------------------------------------------------------------------- /docs/mobx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/mobx.md -------------------------------------------------------------------------------- /docs/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/news.js -------------------------------------------------------------------------------- /docs/nutui.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/nutui.mdx -------------------------------------------------------------------------------- /docs/optimized.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/optimized.mdx -------------------------------------------------------------------------------- /docs/ossa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/ossa.md -------------------------------------------------------------------------------- /docs/page-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/page-config.mdx -------------------------------------------------------------------------------- /docs/pinia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/pinia.md -------------------------------------------------------------------------------- /docs/platform-plugin/how.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/platform-plugin/how.md -------------------------------------------------------------------------------- /docs/platform-plugin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/platform-plugin/index.md -------------------------------------------------------------------------------- /docs/platform-plugin/platform-mini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/platform-plugin/platform-mini.md -------------------------------------------------------------------------------- /docs/platform-plugin/platform-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/platform-plugin/platform-web.md -------------------------------------------------------------------------------- /docs/platform-plugin/reconciler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/platform-plugin/reconciler.md -------------------------------------------------------------------------------- /docs/platform-plugin/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/platform-plugin/template.md -------------------------------------------------------------------------------- /docs/plugin-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/plugin-custom.md -------------------------------------------------------------------------------- /docs/plugin-mini-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/plugin-mini-ci.md -------------------------------------------------------------------------------- /docs/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/plugin.md -------------------------------------------------------------------------------- /docs/preact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/preact.md -------------------------------------------------------------------------------- /docs/prebundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/prebundle.md -------------------------------------------------------------------------------- /docs/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/prerender.md -------------------------------------------------------------------------------- /docs/project-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/project-config.md -------------------------------------------------------------------------------- /docs/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/props.md -------------------------------------------------------------------------------- /docs/quick-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/quick-app.md -------------------------------------------------------------------------------- /docs/react-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-18.md -------------------------------------------------------------------------------- /docs/react-devtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-devtools.md -------------------------------------------------------------------------------- /docs/react-entry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-entry.mdx -------------------------------------------------------------------------------- /docs/react-error-handling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-error-handling.mdx -------------------------------------------------------------------------------- /docs/react-native-harmony.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-native-harmony.md -------------------------------------------------------------------------------- /docs/react-native-remind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-native-remind.md -------------------------------------------------------------------------------- /docs/react-native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-native.md -------------------------------------------------------------------------------- /docs/react-overall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-overall.md -------------------------------------------------------------------------------- /docs/react-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/react-page.mdx -------------------------------------------------------------------------------- /docs/redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/redux.md -------------------------------------------------------------------------------- /docs/ref.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/ref.mdx -------------------------------------------------------------------------------- /docs/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/relations.md -------------------------------------------------------------------------------- /docs/render-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/render-props.md -------------------------------------------------------------------------------- /docs/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/report.md -------------------------------------------------------------------------------- /docs/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/request.md -------------------------------------------------------------------------------- /docs/router-extend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/router-extend.mdx -------------------------------------------------------------------------------- /docs/router.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/router.mdx -------------------------------------------------------------------------------- /docs/seowhy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/seowhy.md -------------------------------------------------------------------------------- /docs/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/size.md -------------------------------------------------------------------------------- /docs/skyline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/skyline.mdx -------------------------------------------------------------------------------- /docs/spec-for-taro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/spec-for-taro.md -------------------------------------------------------------------------------- /docs/specials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/specials.md -------------------------------------------------------------------------------- /docs/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/state.md -------------------------------------------------------------------------------- /docs/static-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/static-reference.md -------------------------------------------------------------------------------- /docs/tailwindcss.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/tailwindcss.mdx -------------------------------------------------------------------------------- /docs/taro-dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/taro-dom.md -------------------------------------------------------------------------------- /docs/taro-in-miniapp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/taro-in-miniapp.mdx -------------------------------------------------------------------------------- /docs/taro-quickapp-manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/taro-quickapp-manifest.md -------------------------------------------------------------------------------- /docs/taroize-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/taroize-troubleshooting.md -------------------------------------------------------------------------------- /docs/taroize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/taroize.md -------------------------------------------------------------------------------- /docs/team/58anjuke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/58anjuke.md -------------------------------------------------------------------------------- /docs/team/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/components.tsx -------------------------------------------------------------------------------- /docs/team/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/index.mdx -------------------------------------------------------------------------------- /docs/team/role-collaborator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/role-collaborator.mdx -------------------------------------------------------------------------------- /docs/team/role-committee.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/role-committee.mdx -------------------------------------------------------------------------------- /docs/team/role-committer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/role-committer.mdx -------------------------------------------------------------------------------- /docs/team/role-triage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/role-triage.mdx -------------------------------------------------------------------------------- /docs/team/team-community.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/team-community.mdx -------------------------------------------------------------------------------- /docs/team/team-core.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/team-core.mdx -------------------------------------------------------------------------------- /docs/team/team-innovate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/team-innovate.mdx -------------------------------------------------------------------------------- /docs/team/team-platform.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/team-platform.mdx -------------------------------------------------------------------------------- /docs/team/team-plugin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/team/team-plugin.mdx -------------------------------------------------------------------------------- /docs/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/template.md -------------------------------------------------------------------------------- /docs/test-utils/fire-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/test-utils/fire-event.md -------------------------------------------------------------------------------- /docs/test-utils/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/test-utils/index.md -------------------------------------------------------------------------------- /docs/test-utils/life-cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/test-utils/life-cycle.md -------------------------------------------------------------------------------- /docs/test-utils/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/test-utils/other.md -------------------------------------------------------------------------------- /docs/test-utils/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/test-utils/queries.md -------------------------------------------------------------------------------- /docs/test-utils/render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/test-utils/render.md -------------------------------------------------------------------------------- /docs/treasures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/treasures.md -------------------------------------------------------------------------------- /docs/ui-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/ui-lib.md -------------------------------------------------------------------------------- /docs/use-h5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/use-h5.mdx -------------------------------------------------------------------------------- /docs/vant.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/vant.mdx -------------------------------------------------------------------------------- /docs/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/version.md -------------------------------------------------------------------------------- /docs/virtual-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/virtual-list.mdx -------------------------------------------------------------------------------- /docs/virtual-waterfall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/virtual-waterfall.mdx -------------------------------------------------------------------------------- /docs/vue-devtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/vue-devtools.md -------------------------------------------------------------------------------- /docs/vue-entry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/vue-entry.mdx -------------------------------------------------------------------------------- /docs/vue-overall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/vue-overall.mdx -------------------------------------------------------------------------------- /docs/vue-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/vue-page.mdx -------------------------------------------------------------------------------- /docs/vue3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/vue3.md -------------------------------------------------------------------------------- /docs/vuex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/vuex.md -------------------------------------------------------------------------------- /docs/wxcloudbase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/wxcloudbase.md -------------------------------------------------------------------------------- /docs/youshu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docs/youshu.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /i18n/en/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/i18n/en/code.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/package.json -------------------------------------------------------------------------------- /packages/taro-components/types/Ad.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Ad.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Form.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Form.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Icon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Icon.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Like.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Like.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Map.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Slot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Slot.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Span.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Span.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Tabs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Tabs.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/Text.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/Text.d.ts -------------------------------------------------------------------------------- /packages/taro-components/types/View.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro-components/types/View.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ad/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ad/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ai/face.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ai/face.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/base/crypto.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/base/crypto.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/base/debug.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/base/debug.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/base/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/base/env.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/base/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/base/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/base/system.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/base/system.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/base/update.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/base/update.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/cloud/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/cloud/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/device/nfc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/device/nfc.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/device/scan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/device/scan.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/device/sms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/device/sms.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/device/wifi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/device/wifi.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ext/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ext/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/files/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/files/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/media/audio.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/media/audio.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/media/image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/media/image.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/media/live.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/media/live.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/media/map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/media/map.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/media/video.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/media/video.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/media/voip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/media/voip.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/network/tcp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/network/tcp.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/network/udp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/network/udp.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/qq/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/qq/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/route/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/route/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/share/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/share/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/swan/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/swan/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/swan/pay.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/swan/pay.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/taro.extend.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/taro.extend.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/taro.hooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/taro.hooks.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ui/fonts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ui/fonts.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ui/menu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ui/menu.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ui/scroll.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ui/scroll.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ui/sticky.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ui/sticky.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ui/tab-bar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ui/tab-bar.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/ui/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/ui/window.d.ts -------------------------------------------------------------------------------- /packages/taro/types/api/wxml/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/api/wxml/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/compile/hooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/compile/hooks.d.ts -------------------------------------------------------------------------------- /packages/taro/types/compile/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/compile/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/global.d.ts -------------------------------------------------------------------------------- /packages/taro/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/index.d.ts -------------------------------------------------------------------------------- /packages/taro/types/taro.api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/taro.api.d.ts -------------------------------------------------------------------------------- /packages/taro/types/taro.component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/taro.component.d.ts -------------------------------------------------------------------------------- /packages/taro/types/taro.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/taro.config.d.ts -------------------------------------------------------------------------------- /packages/taro/types/taro.lifecycle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/taro.lifecycle.d.ts -------------------------------------------------------------------------------- /packages/taro/types/taro.runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/packages/taro/types/taro.runtime.d.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/docs.ts -------------------------------------------------------------------------------- /scripts/notion/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/notion/common.ts -------------------------------------------------------------------------------- /scripts/notion/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/notion/github.ts -------------------------------------------------------------------------------- /scripts/notion/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/notion/sync.ts -------------------------------------------------------------------------------- /scripts/notion/update-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/notion/update-utils.ts -------------------------------------------------------------------------------- /scripts/notion/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/notion/update.ts -------------------------------------------------------------------------------- /scripts/output/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/output/api.ts -------------------------------------------------------------------------------- /scripts/output/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/output/components.ts -------------------------------------------------------------------------------- /scripts/output/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/output/index.ts -------------------------------------------------------------------------------- /scripts/output/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/output/json.ts -------------------------------------------------------------------------------- /scripts/parser/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/parser/ast.ts -------------------------------------------------------------------------------- /scripts/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/parser/index.ts -------------------------------------------------------------------------------- /scripts/parser/taro-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/parser/taro-env.ts -------------------------------------------------------------------------------- /scripts/parser/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/parser/utils/index.ts -------------------------------------------------------------------------------- /scripts/test-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/test-file.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/scripts/write.ts -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/affix-contact/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/components/affix-contact/index.css -------------------------------------------------------------------------------- /src/components/affix-contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/components/affix-contact/index.tsx -------------------------------------------------------------------------------- /src/pages/canIUse/ascf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/pages/canIUse/ascf.json -------------------------------------------------------------------------------- /src/pages/canIUse/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/pages/canIUse/index.css -------------------------------------------------------------------------------- /src/pages/canIUse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/pages/canIUse/index.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/showcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/pages/showcase.js -------------------------------------------------------------------------------- /src/pages/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/pages/versions.js -------------------------------------------------------------------------------- /src/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/sw.js -------------------------------------------------------------------------------- /src/theme/DocVersionSuggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/theme/DocVersionSuggestions.js -------------------------------------------------------------------------------- /src/theme/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/theme/Footer.js -------------------------------------------------------------------------------- /src/theme/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/theme/NotFound.js -------------------------------------------------------------------------------- /src/theme/hotjar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/theme/hotjar.js -------------------------------------------------------------------------------- /src/theme/navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/theme/navbar.module.css -------------------------------------------------------------------------------- /src/theme/tongji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/src/theme/tongji.js -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/css/platform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/css/platform.css -------------------------------------------------------------------------------- /static/data/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/data/contributors.json -------------------------------------------------------------------------------- /static/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/icons/index.js -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /static/img/framework/nerv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/framework/nerv.png -------------------------------------------------------------------------------- /static/img/framework/preact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/framework/preact.png -------------------------------------------------------------------------------- /static/img/framework/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/framework/react.png -------------------------------------------------------------------------------- /static/img/framework/svelte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/framework/svelte.png -------------------------------------------------------------------------------- /static/img/framework/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/framework/vue.png -------------------------------------------------------------------------------- /static/img/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-128x128.png -------------------------------------------------------------------------------- /static/img/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-144x144.png -------------------------------------------------------------------------------- /static/img/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-152x152.png -------------------------------------------------------------------------------- /static/img/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-192x192.png -------------------------------------------------------------------------------- /static/img/icons/icon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-196x196.png -------------------------------------------------------------------------------- /static/img/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-384x384.png -------------------------------------------------------------------------------- /static/img/icons/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-48x48.png -------------------------------------------------------------------------------- /static/img/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-512x512.png -------------------------------------------------------------------------------- /static/img/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-72x72.png -------------------------------------------------------------------------------- /static/img/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/icon-96x96.png -------------------------------------------------------------------------------- /static/img/icons/maskable_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/icons/maskable_icon.png -------------------------------------------------------------------------------- /static/img/logo-taro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/logo-taro.png -------------------------------------------------------------------------------- /static/img/o2logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/o2logo.png -------------------------------------------------------------------------------- /static/img/platform/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/alipay.png -------------------------------------------------------------------------------- /static/img/platform/ascf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/ascf.png -------------------------------------------------------------------------------- /static/img/platform/ding-talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/ding-talk.png -------------------------------------------------------------------------------- /static/img/platform/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/h5.png -------------------------------------------------------------------------------- /static/img/platform/harmony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/harmony.png -------------------------------------------------------------------------------- /static/img/platform/harmonyHybrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/harmonyHybrid.png -------------------------------------------------------------------------------- /static/img/platform/jd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/jd.png -------------------------------------------------------------------------------- /static/img/platform/kuaishou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/kuaishou.png -------------------------------------------------------------------------------- /static/img/platform/lark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/lark.png -------------------------------------------------------------------------------- /static/img/platform/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/qq.png -------------------------------------------------------------------------------- /static/img/platform/quickapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/quickapp.png -------------------------------------------------------------------------------- /static/img/platform/rn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/rn.png -------------------------------------------------------------------------------- /static/img/platform/swan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/swan.png -------------------------------------------------------------------------------- /static/img/platform/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/tt.png -------------------------------------------------------------------------------- /static/img/platform/weapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/weapp.png -------------------------------------------------------------------------------- /static/img/platform/wework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/platform/wework.png -------------------------------------------------------------------------------- /static/img/svg/affix-contact-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/svg/affix-contact-close.svg -------------------------------------------------------------------------------- /static/img/svg/affix-contact-msg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/svg/affix-contact-msg.svg -------------------------------------------------------------------------------- /static/img/taro-logo_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/taro-logo_180.png -------------------------------------------------------------------------------- /static/img/taro-logo_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/taro-logo_400.png -------------------------------------------------------------------------------- /static/img/taroharmonyhybrid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/taroharmonyhybrid.jpg -------------------------------------------------------------------------------- /static/img/team-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/team-structure.png -------------------------------------------------------------------------------- /static/img/update-appid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/img/update-appid.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/static/manifest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/github.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/typings/github.d.ts -------------------------------------------------------------------------------- /typings/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/typings/modules.d.ts -------------------------------------------------------------------------------- /typings/notion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/typings/notion.d.ts -------------------------------------------------------------------------------- /versioned_docs/version-1.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/README.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/children.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/children.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/condition.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/config.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/context.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/css-in-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/css-in-js.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/debug.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/envs-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/envs-debug.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/envs.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/event.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/hooks.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/html.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/hybrid.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/join-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/join-in.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/jsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/jsx.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/list.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/migration.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/mobx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/mobx.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/nerv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/nerv.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/prerender.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/props.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/quick-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/quick-app.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/react.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/redux.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/ref.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/relations.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/report.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/router.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/seowhy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/seowhy.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/size.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/specials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/specials.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/state.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/taroize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/taroize.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/team.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/template.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/tutorial.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/ui-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/ui-lib.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/vue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/vue.md -------------------------------------------------------------------------------- /versioned_docs/version-1.x/wxcloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-1.x/wxcloud.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/README.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/children.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/children.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/condition.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/config.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/context.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/debug.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/envs-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/envs-debug.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/envs.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/event.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/hooks.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/hybrid.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/join-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/join-in.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/join-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/join-us.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/jsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/jsx.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/learn.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/list.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/mobx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/mobx.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/plugin.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/props.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/quick-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/quick-app.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/redux.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/ref.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/relations.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/report.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/router.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/seowhy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/seowhy.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/size.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/specials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/specials.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/state.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/taroize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/taroize.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/team.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/template.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/tutorial.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/ui-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/ui-lib.md -------------------------------------------------------------------------------- /versioned_docs/version-2.x/youshu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-2.x/youshu.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/README.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/apis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/apis/index.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/app-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/app-config.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/children.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/children.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/cli.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/condition.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/config.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/context.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/css-in-js.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/css-in-js.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/debug.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/duxapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/duxapp.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/envs-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/envs-debug.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/envs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/envs.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/event.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/folder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/folder.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/guide.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/h5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/h5.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/harmony.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/harmony.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/hooks.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/html.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/html.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/hybrid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/hybrid.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/join-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/join-in.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/jsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/jsx.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/list.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/migration.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/mobx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/mobx.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/news.js -------------------------------------------------------------------------------- /versioned_docs/version-3.x/nutui.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/nutui.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/optimized.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/optimized.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/ossa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/ossa.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/pinia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/pinia.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/plugin.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/preact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/preact.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/prebundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/prebundle.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/prerender.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/props.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/quick-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/quick-app.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/react-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/react-18.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/redux.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/ref.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/ref.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/relations.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/report.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/request.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/router.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/router.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/seowhy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/seowhy.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/size.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/specials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/specials.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/state.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/taro-dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/taro-dom.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/taroize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/taroize.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/template.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/treasures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/treasures.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/ui-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/ui-lib.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/use-h5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/use-h5.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/vant.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/vant.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/version.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/vue-entry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/vue-entry.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/vue-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/vue-page.mdx -------------------------------------------------------------------------------- /versioned_docs/version-3.x/vue3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/vue3.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/vuex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/vuex.md -------------------------------------------------------------------------------- /versioned_docs/version-3.x/youshu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versioned_docs/version-3.x/youshu.md -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NervJS/taro-docs/HEAD/versions.json --------------------------------------------------------------------------------