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.
 
 
 
 
 
 

15 lines
291 B

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. Vue.config.productionTip = false
  4. Vue.filter('capitalize', function (value) {
  5. if (!value) return ''
  6. value = value.toString()
  7. return value.charAt(0).toUpperCase() + value.slice(1)
  8. })
  9. new Vue({
  10. render: h => h(App),
  11. }).$mount('#app')