vue-social-sharing
vue-social-sharing copied to clipboard
Component not showing up correctly
Using webpack and npm following the Getting Started guide.
The compoenent is not rendering correctly(only showing up a hyperlink), the code snippet has been attached.
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import vuetify from './plugins/vuetify'
import VueSocialSharing from 'vue-social-sharing'
Vue.use(VueSocialSharing);
Vue.config.productionTip = false
new Vue({
router,
vuetify,
render: h => h(App)
}).$mount('#app')
<v-col style="padding-left: 35px">
<ShareNetwork
network="facebook"
url="https://news.vuejs.org/issues/180"
title="Say hi to Vite! A brand new, extremely fast development setup for Vue."
description="This week, I’d like to introduce you to 'Vite', which means 'Fast'. It’s a brand new development setup created by Evan You."
quote="The hot reload is so fast it\'s near instant. - Evan You"
hashtags="vuejs,vite"
>
Share on Facebook
</ShareNetwork>
</v-col>
Have the same problem with quasar 2. used the @next install and 3.0.9 all the same. Older quasar version worked with 3.0.8
Code :
<template>
<div class="row justify-center full-width text-center">
<q-card>
<ShareNetwork
network="facebook"
url="https://blah.com"
title="title"
description="description"
media="url"
>
Share on facebook
</ShareNetwork>
</q-card>
</div>
</template>
<script>
</script>
bootfile :
import Vue from 'vue';
import VueSocialSharing from 'vue-social-sharing'
Vue.use(VueSocialSharing);
Any updates on this? I've having same issue with bootstrap-vue UI framework
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Same here with latest Vue 2 and tailwind.