vue-disqus
Version:
Vue component to integrate Disqus comments in your application, with support for SPA
22 lines (18 loc) • 461 B
Markdown
# CDN
You can use `vue-disqus` easily through CDN.
```html
<!-- Add in your head tag -->
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-disqus"></script>
```
```html
<div id="app">
<!-- code -->
<div class="comments">
<disqus shortname="your_shortname_disqus"></disqus>
</div>
</div>
```
::: tip
You do not need to use `Vue.use` because the component is automatically installed globally.
:::