mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
15 lines
160 B
Vue
15 lines
160 B
Vue
<template>
|
|
<div>default</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'default',
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {},
|
|
watch: {},
|
|
}
|
|
</script>
|