tiptap/examples/Components/Navigation/index.vue

31 lines
617 B
Vue
Raw Normal View History

2018-08-22 20:10:44 +08:00
<template>
2018-11-09 05:03:10 +08:00
<div class="navigation">
2018-08-22 21:42:03 +08:00
2018-11-09 05:03:10 +08:00
<h1 class="navigation__logo">
2018-11-13 05:51:44 +08:00
tiptap
2018-11-09 05:03:10 +08:00
</h1>
2018-08-22 21:42:03 +08:00
2018-11-09 05:03:10 +08:00
<div>
2018-12-11 17:44:19 +08:00
<a class="navigation__link" href="https://github.com/scrumpy/tiptap/blob/master/CONTRIBUTING.md" target="_blank">
2018-11-09 05:03:10 +08:00
Contribute
</a>
2018-12-11 17:44:19 +08:00
<a class="navigation__github-link" href="https://github.com/scrumpy/tiptap" target="_blank">
2018-11-09 05:03:10 +08:00
<icon class="navigation__icon" name="github" />
</a>
</div>
2018-08-22 21:42:16 +08:00
2018-11-09 05:03:10 +08:00
</div>
2018-08-22 20:10:44 +08:00
</template>
2018-08-22 21:42:03 +08:00
<script>
import Icon from 'Components/Icon'
export default {
2018-11-09 05:03:10 +08:00
components: {
Icon,
},
2018-08-22 21:42:03 +08:00
}
</script>
2018-11-09 05:03:10 +08:00
<style lang="scss" src="./style.scss" scoped></style>