UNPKG

zview-mobile-editor

Version:

A WYSIWYG text editor base on html5 and vue

18 lines (16 loc) 328 B
import template from './dashboard.html' export default { template, data(){ return {url: null} }, methods: { createLink(){ if (!this.url) { return } this.$parent.execCommand('createLink', this.url) this.url = null } } }