vue-social-sharing icon indicating copy to clipboard operation
vue-social-sharing copied to clipboard

Component not showing up correctly

Open MohaElder opened this issue 3 years ago • 3 comments

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>

MohaElder avatar Mar 08 '22 01:03 MohaElder

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);

erhard avatar Mar 29 '22 12:03 erhard

Any updates on this? I've having same issue with bootstrap-vue UI framework

digitalcortex avatar May 25 '22 08:05 digitalcortex

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.

stale[bot] avatar Jul 31 '22 07:07 stale[bot]

Same here with latest Vue 2 and tailwind.

stylefieber avatar Nov 11 '22 21:11 stylefieber