// Calls the onClick command from the Populate Button
function myFunctionPopulate() {
// Creates a new Firebase reference linking this JS to the Firebase database
var ref = new Firebase("https://project01-d018e.firebaseio.com/Numbers");
// Creates a snapshot of the data from the desired
我使用的是Vue.js组件vue-tags-input。我希望以以下格式编辑存储在db中的标记:1、2、3、4、5、6。
我通过,拆分数据,并将值推送到标记数组中。
var tags_split = this.resources[index]['tags'].split(',')
for (var item in tags_split){
this.tags.push(tags_split[item]);
}
var app = new Vue({
el: '#app',
data: {
tags: [],
tag: