Removed Vue
This commit is contained in:
Vendored
+5
-5
@@ -6,7 +6,7 @@
|
||||
|
||||
require('./bootstrap');
|
||||
|
||||
window.Vue = require('vue');
|
||||
// window.Vue = require('vue');
|
||||
|
||||
/**
|
||||
* The following block of code may be used to automatically register your
|
||||
@@ -19,7 +19,7 @@ window.Vue = require('vue');
|
||||
// const files = require.context('./', true, /\.vue$/i)
|
||||
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default))
|
||||
|
||||
Vue.component('example-component', require('./components/ExampleComponent.vue').default);
|
||||
// Vue.component('example-component', require('./components/ExampleComponent.vue').default);
|
||||
|
||||
/**
|
||||
* Next, we will create a fresh Vue application instance and attach it to
|
||||
@@ -27,6 +27,6 @@ Vue.component('example-component', require('./components/ExampleComponent.vue').
|
||||
* or customize the JavaScript scaffolding to fit your unique needs.
|
||||
*/
|
||||
|
||||
const app = new Vue({
|
||||
el: '#app',
|
||||
});
|
||||
// const app = new Vue({
|
||||
// el: '#app',
|
||||
// });
|
||||
|
||||
Vendored
+6
-6
@@ -6,12 +6,12 @@ window._ = require('lodash');
|
||||
* code may be modified to fit the specific needs of your application.
|
||||
*/
|
||||
|
||||
try {
|
||||
window.Popper = require('popper.js').default;
|
||||
window.$ = window.jQuery = require('jquery');
|
||||
|
||||
require('bootstrap');
|
||||
} catch (e) {}
|
||||
// try {
|
||||
// window.Popper = require('popper.js').default;
|
||||
// window.$ = window.jQuery = require('jquery');
|
||||
//
|
||||
// require('bootstrap');
|
||||
// } catch (e) {}
|
||||
|
||||
/**
|
||||
* We'll load the axios HTTP library which allows us to easily issue requests
|
||||
|
||||
Vendored
+1
-1
@@ -5,4 +5,4 @@
|
||||
@import 'variables';
|
||||
|
||||
// Bootstrap
|
||||
@import '~bootstrap/scss/bootstrap';
|
||||
//@import '~bootstrap/scss/bootstrap';
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
@extends("layout.base")
|
||||
|
||||
|
||||
|
||||
@section("content")
|
||||
Hej
|
||||
@endsection
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>@yield("title")</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link type="text/css" rel="stylesheet" href="{{ mix("/css/app.css") }}">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Reference in New Issue
Block a user