Great!
Only for reference, here is an updated tutorial from @april for Quasar 0.14 with Laravel:
http://blog.aprilpnguyen.com/2017/08/how-to-set-up-quasar-v014-on-laravelvue.html
Great!
Only for reference, here is an updated tutorial from @april for Quasar 0.14 with Laravel:
http://blog.aprilpnguyen.com/2017/08/how-to-set-up-quasar-v014-on-laravelvue.html
Hi willagner!
You have to add the Quasar components you are using in the template, in App.vue, replace:
<script>
export default {
data: function() {
with:
<script>
import { QLayout, QToolbar } from ‘quasar-framework’
export default {
components: {
QLayout,
QToolbar
},
data: function() {
And you have to delete q-drawer component, it’s not a valid component in 0.14 (not sure, but I can’t find it!)
Hope that helps!