0👍
you need to call your script before app.js file like this
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '{{ fb_app_id() }}',
xfbml : true,
version : '{{ fb_api_version() }}'
});
};
</script>
<script src="your path to app.js file"></script>
- [Vuejs]-[Vue warn]: Failed to mount component when using mixin with a parameter
- [Vuejs]-How to display an image in vuejs/vuetify whose path is in json fake server?
Source:stackexchange.com