get-accessibility-info.uvue 618 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <!-- #ifdef APP -->
  3. <scroll-view style="flex:1">
  4. <!-- #endif -->
  5. <view>
  6. <page-head :title="'getAccessibilityInfo'"></page-head>
  7. <view class="uni-common-mt" >
  8. <text style="margin-left: 8px;">无障碍服务信息如下:</text>
  9. <text style="margin-top: 15px;padding: 8px;">{{
  10. accessibilityInfo
  11. }}</text>
  12. </view>
  13. </view>
  14. <!-- #ifdef APP -->
  15. </scroll-view>
  16. <!-- #endif -->
  17. </template>
  18. <script setup>
  19. const accessibilityInfo = ref("")
  20. accessibilityInfo.value = JSON.stringify(uni.getAccessibilityInfo())
  21. </script>
  22. <style>
  23. </style>