Simple text editor based on tiptap. HTML format.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
428 B

  1. <template>
  2. <div id="app">
  3. <Dedediteur/>
  4. </div>
  5. </template>
  6. <script>
  7. import Dedediteur from './components/Dedediteur.vue'
  8. export default {
  9. name: 'App',
  10. components: {
  11. Dedediteur
  12. }
  13. }
  14. </script>
  15. <style>
  16. body, html{
  17. margin : 0;
  18. padding: 0;
  19. }
  20. #app {
  21. font-family: Avenir, Helvetica, Arial, sans-serif;
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale;
  24. color: #2c3e50;
  25. }
  26. </style>