mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-05 04:19:07 +08:00
30 lines
628 B
Vue
30 lines
628 B
Vue
<template>
|
|
<div class="navigation">
|
|
|
|
<h1 class="navigation__logo">
|
|
tiptap <span class="navigation__beta">beta</span>
|
|
</h1>
|
|
|
|
<div>
|
|
<a class="navigation__link" href="https://github.com/heyscrumpy/tiptap/blob/master/CONTRIBUTING.md" target="_blank">
|
|
Contribute
|
|
</a>
|
|
<a class="navigation__github-link" href="https://github.com/heyscrumpy/tiptap" target="_blank">
|
|
<icon class="navigation__icon" name="github" />
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Icon from 'Components/Icon'
|
|
|
|
export default {
|
|
components: {
|
|
Icon,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" src="./style.scss" scoped></style> |