summaryrefslogtreecommitdiff
path: root/static/js/app.js
blob: a4eee52f909509ac6ff9966207a0a4fe4fa478b0 (plain)
1
2
3
4
5
6
7
8
9
10
Vue.component('root', {
  template: '<div>A custom component!</div>'
})

var app = new Vue({
  el: '#app',
  data: {
    imgs: window.imgs
  }
});