Gogh/gh-pages/js/vue.js

22 lines
350 B
JavaScript
Raw Normal View History

/* global $, fetch, console, Vue, $users */
2020-03-06 07:29:02 +03:00
/* eslint no-undef: "error", semi: 2 */
/* jshint esversion: 6 */
Vue.component('terminal', {
template: '#template-terminal',
2020-03-06 07:29:02 +03:00
props: {
data: {
type: Object
2020-03-06 07:29:02 +03:00
}
}
});
var $app = new Vue({
el: '#js-vue-app',
data: function () {
return {
schemes_data: $schemes
2020-03-06 07:29:02 +03:00
}
}
});