contactus.vue 374 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto">
  3. <div
  4. class="content"
  5. v-html="info"></div>
  6. <div></div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. info: '',
  14. }
  15. },
  16. async fetch() {
  17. await this.$store.dispatch('getShopInfo').then(res => {
  18. this.info = res.contactus
  19. })
  20. },
  21. }
  22. </script>