tonickkozlov / vue-tweet-embed

Embed tweets in your vue.js app
111 stars 27 forks source link

nuxt.js support #13

Closed ghost closed 6 years ago

ghost commented 6 years ago

image

image

fdenzer commented 6 years ago
    [...]
    <Tweet :id="'692527862369357824'"/>
  </div>
</template>

<script>
  import 'babel-polyfill'
  import { Tweet, Moment, Timeline } from 'vue-tweet-embed'

  export default {
    components: {
      Tweet,
    },
    [...]
  }
</script>

works for me w/ the following mode in nuxt.config.js

module.exports = {
  mode: 'ssr',
  build: {
    vendor: [
      'babel-polyfill',
      [...]
    ],
  },
}