You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/WebMVC/wwwroot/router/shared/detail.html

17 lines
550 B

<template>
<display :service="service" :area="area" :entity="entity" :model="model" :id="id" />
</template>
<script>
export default {
name: 'detail',
data: function () {
return {
service: this.$route.query.service || 'IoTCenter',
area: this.$route.query.area || 'default',
entity: this.$route.query.entity,
model: this.$route.query.model || this.$route.query.entity,
id: this.$route.query.id
}
}
}
</script>