order.vue 276 B

1234567891011121314151617181920
  1. <template lang="html">
  2. <div class="order">
  3. <h2>order</h2>
  4. <h2>{{userId}}</h2>
  5. <navigation></navigation>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. data () {
  11. return {
  12. userId: this.$store.state.user.userId
  13. }
  14. }
  15. }
  16. </script>
  17. <style lang="css">
  18. </style>