9
10 data: {
11▶ branches: ['main', 'dev'],
12 currentBranch: 'main',
13 commits: null
· · ·
12▶ currentBranch: 'main',
13 commits: null
14 },
· · ·
15
16▶ created: function () {
17 this.fetchData()
18 },
· · ·
23
24 filters: {
25▶ truncate: function (v) {
26 var newline = v.indexOf('\n')
27 return newline > 0 ? v.slice(0, newline) : v
· · ·
28 },
29▶ formatDate: function (v) {
30 return v.replace(/T|Z/g, ' ')
31 }
+ 2 more matches in this file