import template from './dashboard.html' /** * Created by peak on 2017/2/10. */ export default { template, data(){ return { rows: 2, cols: 2, hasHead: false, striped: false, hover: false } }, methods: { insertTable(){ if (this.rows < 2 || this.rows > 10) { return } if (this.cols < 2 || this.cols > 10) { return } let table = '' for (let i = 0; i < this.rows; i++) { table += '' for (let j = 0; j < this.cols; j++) { table += '' } table += '' } table += '
 
' this.$parent.execCommand('insertHTML', table) } } }