UNPKG

bootstrap-vue

Version:

Quickly integrate Bootstrap 4 components with Vue.js

21 lines (19 loc) 293 B
window.app = new Vue({ el: '#app', data: { name: '', names: [] }, methods: { clearName () { this.name = '' }, submit (e) { if (!this.name) { return e.preventDefault() } this.names.push(this.name) this.clearName() } } })