snipe-it/resources/views/importer/import.blade.php
2023-02-27 14:29:02 -08:00

35 lines
881 B
PHP

@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ trans('general.import') }}
@parent
@stop
{{-- Page content --}}
@section('content')
{{-- Hide importer until vue has rendered it, if we continue using vue for other things we should move this higher in the style --}}
{{-- <style>
[v-cloak] {
display:none;
}
THIS IS VUE STUFF ISNT IT?
</style> --}}
{{-- YET ANOTHER FIXME! argh. This file shouldn't exist. --}}
@livewire('importer') {{-- Yes, this is stupid - we should be able to route straight over and not have this, but Livewire doesn't work in this app that way :/ --}}
@stop
@section('moar_scripts')
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
{{-- <script nonce="{{ csrf_token() }}">
new Vue({
el: '#app'
});
</script> --}}
@endsection