index.vue 386 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="container">
  3. <span style="font-size: 24px;">{{uuid}}</span>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. layout: 'shop',
  9. data () {
  10. return {
  11. uuid: this.$route.params.uuid
  12. }
  13. },
  14. fetch ({ store, route }) {
  15. return Promise.all([
  16. store.dispatch('shop/findStoreInfoFromUuid', route.params)
  17. ])
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>