index.vue 406 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="privacy">
  3. <!-- header -->
  4. <cu-custom bgColor="bg-gradual-blue" isBack><view slot="content">隐私声明</view></cu-custom>
  5. <!-- section -->
  6. <rich-text style="width: 100vw;" :nodes="describe"></rich-text>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. describe:""
  14. };
  15. },
  16. onLoad() {},
  17. methods: {}
  18. };
  19. </script>
  20. <style lang="scss" scoped></style>