SOURCE

console 命令行工具 X clear

                    
>
console
new Vue({
  el: '#app',
  data: {
    text: '输入什么, 上面显示什么'
  },
  methods: {
    empty: function() {
      this.text = '';
    }
  }
});
<div id="app">
  <h4>
    {{text}}
  </h4>
  <input v-model="text" type="text">
  <a @click="empty">
    清空
  </a>
</div>
h4 {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  background: #fff;
  color: #69c;
  font-size: 14px;
}

input {
  padding: 5px 15px;
  font-size: 12px;
}

a {
  display: inline-block;
  padding: 5px 15px;
  background: #69c;
  color: #fff;
  font-size: 14px;
}