e.detail.data.response.items.forEach(function (item) {
_that.friendList.push(item);
});
_that.friendList.push(...e.detail.data.response.items);
db = sqlite3
c = db.connect(database="incidents")
cu = c.cursor()
print (nums)
cu.execute('create table if not exists inc_indexes(id INTEGER PRIMARY KEY AUTOINCREMENT, number TEXT)')
c.commit()
#Fillup table with short information
for i in nums:
cu.execute('insert into inc_indexes(number) values (?)', i )
c.commit()