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/routes/shared/index.html

15 lines
472 B

<template>
<list :service="service" :area="area" :entity="entity" :model="model" />
</template>
<script>
export default {
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
}
}
}
</script>