mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 02:35:23 -04:00
Basic setup for Vue app
This commit is contained in:
parent
a06fad974e
commit
99dd107724
7 changed files with 56 additions and 1 deletions
15
public/js/views/Cover.vue
Normal file
15
public/js/views/Cover.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<hello-world />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import HelloWorld from '../components/HelloWorld';
|
||||
|
||||
export default {
|
||||
name: 'Cover',
|
||||
|
||||
components: {
|
||||
HelloWorld
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue