var TempSendPanel = { template: '
', props: [], data: function() { return { words: 1000, count: 0, content: "" } }, methods: { countWord: function() { if(this.content.length <= this.words) { this.count = this.content.length } else { this.content = this.content.slice(0, this.words) } } } }