このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/resources/assets/js/app.js

28 行
779 B
JavaScript
Raw 通常表示 履歴

2018-01-24 00:25:04 +09:00
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
* building robust, powerful web applications using Vue and Laravel.
*/
require('./bootstrap');
window.Vue = require('vue');
2019-08-08 18:00:24 +09:00
import bash from './components/bash/cli.vue';
2020-02-02 13:39:53 +09:00
import tsuchi from './components/site/components/tsuchi.vue';
2018-01-24 00:25:04 +09:00
2019-01-08 13:16:40 +09:00
Vue.component('bash', bash);
2020-02-02 13:39:53 +09:00
Vue.component('tsuchi', tsuchi);
2018-01-24 00:25:04 +09:00
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
2018-01-24 21:22:17 +09:00
// Vue.component('example', require('./components/Example.vue'));
2018-01-24 00:25:04 +09:00
const app = new Vue({
2019-01-28 18:14:15 +09:00
el: '#app'
2018-01-24 00:25:04 +09:00
});