jonathan-martz / vanillo-vue
Vanillo Global VueJs Implementation
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Language:Vue
This package is auto-updated.
Last update: 2025-01-11 18:38:21 UTC
README
Vanillo Global VueJs Setup
Install dependecies via yarn
yarn install --save vue
yarn install --save vuex
Add to webpack.mix.js
.js('vendor/jonathan-martz/vanillo-vue/src/resource/assets/js/vue-init-frontend.js', 'public/js/vue-init-frontend.js')
Add to app.blade.php
<script src="{{ asset('js/vue-init-frontend.js') }}"></script>
Add to home.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-12 p-0">
<vn-category-grid category="1"></vn-category-grid>
<vn-category-grid category="2"></vn-category-grid>
</div>
</div>
</div>
@endsection