Skip to content

Instantly share code, notes, and snippets.

@armedoctopus
Created May 12, 2019 17:27
Show Gist options
  • Save armedoctopus/27c6914f84a1f39f989ccc6f13a2e765 to your computer and use it in GitHub Desktop.
Save armedoctopus/27c6914f84a1f39f989ccc6f13a2e765 to your computer and use it in GitHub Desktop.
Reactive Facebook Comment Plugin for vue spa
<template>
<div class="fb-comments" data-href="https://songxy.com/mastering" data-numposts="5" data-colorscheme="light" data-width="280px"></div>
</template>
<script>
export default {
name: 'FacebookComments',
mounted(){
this.init()
},
methods: {
init () {
if (window.FB) {
window.FB.init({
appId : 'xxxxxxxxxxxxxxx',
status : true,
xfbml : true,
version : 'v3.3'
})
}
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment