mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
22 lines
350 B
JavaScript
22 lines
350 B
JavaScript
/* global $, fetch, console, Vue, $users */
|
|
/* eslint no-undef: "error", semi: 2 */
|
|
/* jshint esversion: 6 */
|
|
|
|
Vue.component('terminal', {
|
|
template: '#template-terminal',
|
|
props: {
|
|
data: {
|
|
type: Object
|
|
}
|
|
}
|
|
});
|
|
|
|
var $app = new Vue({
|
|
el: '#js-vue-app',
|
|
data: function () {
|
|
return {
|
|
schemes_data: $schemes
|
|
}
|
|
}
|
|
});
|