detail.vue 395 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="page-form-container">
  3. <device-detail :product-id="productId" />
  4. </div>
  5. </template>
  6. <script>
  7. import { DeviceDetail } from '@/views/components'
  8. export default {
  9. name: 'LicensedDeviceDetail',
  10. components: {
  11. DeviceDetail
  12. },
  13. data() {
  14. return {
  15. productId: ''
  16. }
  17. },
  18. created() {
  19. this.productId = this.$route.query.productId
  20. }
  21. }
  22. </script>