faq.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div>
  3. <section style="position: relative;">
  4. <div class="center">
  5. <center>
  6. <h1 style="font-size: 3em; margin-bottom: 0em;">Frequently Asked Questions</h1>
  7. <p style="color: #999; margin-bottom: 3em;">Still have questions? Feel free to join our Discord!</p>
  8. <v-expansion-panels focusable>
  9. <v-expansion-panel v-for="(item, i) in items" :key="i" style="width: 50vw; min-width: 300px;">
  10. <v-expansion-panel-header v-text="item.question">Loading</v-expansion-panel-header>
  11. <v-expansion-panel-content v-html="item.answer" style="text-align: left; padding: 0.5em;">Loading</v-expansion-panel-content>
  12. </v-expansion-panel>
  13. </v-expansion-panels>
  14. </center>
  15. </div>
  16. </section>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. data: () => ({
  22. items: [
  23. {
  24. question: "Why is it not in chrome store yet?",
  25. answer: "Chrome extension appoval process takes some time. As soon as it's available in the store - We'll update the site "
  26. },
  27. {
  28. question: "Is it dangerous?/Is it a virus?",
  29. answer: "While there is some trust involved in installing an extension from 3-rd party source - you can see all permissions requested by the extension before installing it. This extension only asks for access to youtube.com page "
  30. },
  31. {
  32. question: "I downvoted a video, and downvotes number didn't change",
  33. answer: "Currently we're using YouTube API to get dislikes count. It may take some time for data to be updated. YouTube might freeze dislike counts as well. We're working on a solution for this "
  34. },
  35. ],
  36. }),
  37. }
  38. </script>