R
R
Roman2018-12-30 15:58:53
Vue.js
Roman, 2018-12-30 15:58:53

How to connect Vuetify?

I'm trying to connect Vuetify. The problem is that the component does not work Instead of a hamburger, the inscription "Menu" is displayed Added to app.scss File app.js<v-toolbar-side-icon></v-toolbar-side-icon>@import '~vuetify/dist/vuetify.min.css';

import PanelComponent from "./components/PanelComponent";

require('./bootstrap');

var Vue = require('vue');
var Vuetify = require('vuetify');

Vue.use(Vuetify)

Vue.component('panel-component', require('./components/PanelComponent.vue').default);

const app = new Vue({
    el: '#app'
});

What could be the reason?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
0
0xD34F, 2018-12-30
@roman94

"Menu" is displayed instead of a hamburger

You need to include an icon font. How to do this - you can read in the documentation .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question