Slim down examples.

This commit is contained in:
Taylor Otwell
2016-07-24 20:19:25 -05:00
parent 7bb44a2542
commit eedac025eb
5 changed files with 13 additions and 28 deletions

View File

@@ -13,12 +13,6 @@ require('./bootstrap');
* the application, or feel free to tweak this setup for your needs.
*/
Vue.component('example', require('./components/Example.vue'));
var app = new Vue({
el: 'body',
ready() {
console.log('Application ready.');
}
el: 'body'
});

View File

@@ -1,4 +1,5 @@
window._ = require('lodash');
window.Cookies = require('js-cookie');
/**

View File

@@ -1,13 +0,0 @@
<template>
<div>
<h1>Example Component</h1>
</div>
</template>
<script>
export default {
ready() {
console.log('Component ready.')
}
}
</script>