install.vue 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="wrapper">
  3. <img class="img-title" src="../static/img/img-install-title.png" @click="installExtension">
  4. <div class="row">
  5. <img src="../static/img/img-install-01.png">
  6. <img src="../static/img/img-install-02.png">
  7. <img src="../static/img/img-install-03.png">
  8. <img src="../static/img/img-install-04.png">
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: "install",
  15. methods: {
  16. installExtension() {
  17. let url = 'https://d3d9wvhy948gxx.cloudfront.net/extensions/chrome/denet.zip'
  18. location.href= url;
  19. },
  20. }
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. .wrapper {
  25. width: 100%;
  26. height: 100vh;
  27. display: flex;
  28. flex-direction: column;
  29. align-items: center;
  30. justify-content: center;
  31. padding: 40px;
  32. box-sizing: border-box;
  33. .img-title {
  34. width: 510px;
  35. margin-bottom: 90px;
  36. cursor: pointer;
  37. }
  38. .row {
  39. img {
  40. width: 270px;
  41. margin-right: 30px;
  42. }
  43. }
  44. }
  45. </style>