I'm working on a simple application with Vue.js, when checking some checkbox the marked options are presented in the Html, so it works normal, but the problem is that the vector brackets appear as well. You can not present them.
var app = new Vue({
el: '#app',
data: {
frames: Array()
}
})
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css"/>
<link rel="stylesheet" href="assets/css/main.css"/>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script><divid="app">
<label>QUAIS FRAMEWORKS MAIS GOSTA?</label><br>
<input type="checkbox" value="VUE" v-model="frames">VUE
<input type="checkbox" value="REACT" v-model="frames">REACT
<input type="checkbox" value="ANGULAR" v-model="frames">ANGULAR
<p> Resposta: {{ frames }} </p>
</div>