vue-disqus
Version:
Vue component to integrate Disqus comments in your application, with support for SPA
18 lines (14 loc) • 440 B
JavaScript
import Disqus from './Disqus.vue'
import DisqusCount from './DisqusCount.vue'
export default function install (Vue, options = {}) {
Vue.component('Disqus', Disqus)
Vue.component('DisqusCount', DisqusCount)
Vue.prototype.$disqus = {
shortname: options.shortname || null,
reset: null
}
}
// auto install
if (typeof window !== 'undefined' && typeof window.Vue !== 'undefined') {
window.Vue.use(install)
}