时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
445 B

  1. <template>
  2. <view>
  3. <rich-text :nodes="content" v-if="content"></rich-text>
  4. <my-nocontent v-else></my-nocontent>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data(){
  10. return {
  11. content: ''
  12. }
  13. },
  14. onLoad(){
  15. this.getData();
  16. },
  17. methods: {
  18. getData(){
  19. this.$http(this.API.API_ARTICLE_QA).then(res => {
  20. this.content = res.data.content;
  21. })
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped="scoped">
  27. </style>