### Add Rich Text Rendering Example Source: https://github.com/dingyong0214/thorui-uniapp/blob/master/README.md An example for rendering rich text has been added. This demonstrates how to effectively display formatted text content within the Uniapp application. ```vue // Added example for rich text rendering. ``` -------------------------------- ### Update ThorUI Example Personal Center for Members Source: https://github.com/dingyong0214/thorui-uniapp/blob/master/README.md The personal center content in the ThorUI example project has been updated and is now exclusively available to members. This includes sections like personal center, sharing, member introduction, version introduction, open source address, and help center. ```vue // ThorUI example personal center content now open to members only. ``` -------------------------------- ### UniApp Network Request Example Source: https://github.com/dingyong0214/thorui-uniapp/blob/master/README.md Demonstrates how to perform network requests within a UniApp project. This snippet is part of the V1.4.1 update, focusing on providing practical examples for common development tasks. ```javascript /** * Example of network request in UniApp * This is a placeholder for actual network request code. * In a real scenario, you would use uni.request or a similar library. */ function makeNetworkRequest() { uni.request({ url: 'https://api.example.com/data', method: 'GET', success: (res) => { console.log('Request successful:', res.data); }, fail: (err) => { console.error('Request failed:', err); } }); } ``` -------------------------------- ### ThorUI Cropper Component (wxs): Fix Initialization Issue Source: https://github.com/dingyong0214/thorui-uniapp/blob/master/README.md A bug has been fixed in the wxs version of the image cropper component where initialization was incorrect. This ensures the cropper functions as expected from the start. ```javascript 修复图片裁剪组件(wxs版)初始化裁剪不正确的问题。 ``` -------------------------------- ### Add Negative Value Example to tui-charts-line Source: https://github.com/dingyong0214/thorui-uniapp/blob/master/README.md Adds an example demonstrating the display of negative values for the tui-charts-line component in ThorUI. This showcases how to visualize line charts with negative data points. ```Vue