webapp: Added defineComponent to all components

This commit is contained in:
Thomas Basler
2022-06-21 20:27:03 +02:00
parent c8075d533f
commit cd35261570
20 changed files with 70 additions and 40 deletions

View File

@@ -70,10 +70,11 @@
</template>
<script>
import { defineComponent } from 'vue';
import InverterChannelInfo from "@/components/partials/InverterChannelInfo";
import bootstrap from "bootstrap/dist/js/bootstrap.js";
export default {
export default defineComponent({
components: {
InverterChannelInfo,
},
@@ -153,5 +154,5 @@ export default {
this.isFirstFetchAfterConnect = true;
},
},
};
});
</script>