mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-12 08:49:04 +08:00
21 lines
328 B
Vue
21 lines
328 B
Vue
<template>
|
|
<div class="page" spellcheck="false">
|
|
<navigation />
|
|
<div class="page__content">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navigation from 'Components/Navigation'
|
|
|
|
export default {
|
|
components: {
|
|
Navigation,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" src="./style.scss"></style>
|