mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
16 lines
185 B
Vue
16 lines
185 B
Vue
|
<template>
|
||
|
<hello-world />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import HelloWorld from '../components/HelloWorld';
|
||
|
|
||
|
export default {
|
||
|
name: 'Cover',
|
||
|
|
||
|
components: {
|
||
|
HelloWorld
|
||
|
}
|
||
|
}
|
||
|
</script>
|