Simple text editor based on tiptap. HTML format.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

31 行
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>