Import the component
You can import it in your Vue SFC like this (please note that styles have to be imported separately):
import VueButton from '@justeat/f-button';
import '@justeat/f-button/dist/f-button.css';
export default {
components: {
VueButton
}
}
If you are using Webpack, you can import the component dynamically to separate the vue-button
bundle from the main bundle.client.js
:
import '@justeat/f-button/dist/f-button.css';
export default {
components: {
...
VueButton: () => import(/* webpackChunkName: "vue-button" */ '@justeat/f-button')
}
}