| 123456789101112131415161718192021222324 |
- <template>
- <div class="container">
- <span style="font-size: 24px;">{{uuid}}</span>
- </div>
- </template>
- <script>
- export default {
- layout: 'shop',
- data () {
- return {
- uuid: this.$route.params.uuid
- }
- },
- fetch ({ store, route }) {
- return Promise.all([
- store.dispatch('shop/findStoreInfoFromUuid', route.params)
- ])
- }
- }
- </script>
- <style>
- </style>
|