vue_activity: add a Location sub-component, teleported in form

This commit is contained in:
2021-10-13 09:56:29 +02:00
parent 7c21818f00
commit 49b1b6f413
4 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
<template>
<teleport to="#location">
Location in vue
</teleport>
</template>
<script>
export default {
name: "Location"
}
</script>
<style scoped>
</style>