webapp: Implement Navbar as typescript

This commit is contained in:
Thomas Basler 2022-10-17 18:29:26 +02:00
parent 66d296a97b
commit 7e53160162

View File

@ -77,12 +77,14 @@
</nav> </nav>
</template> </template>
<script> <script lang="ts">
export default { import { defineComponent } from 'vue';
export default defineComponent({
methods: { methods: {
onClick() { onClick() {
this.$refs.navbarCollapse && this.$refs.navbarCollapse.classList.remove("show"); this.$refs.navbarCollapse && (this.$refs.navbarCollapse as HTMLElement).classList.remove("show");
} }
}, },
} });
</script> </script>