links.vue 687 B

123456789101112131415161718192021222324252627282930313233
  1. <style>
  2. .test-links {
  3. padding: 20px;
  4. }
  5. .test-links a{
  6. display: block;
  7. line-height: 32px;
  8. font-size: 24px;
  9. margin-bottom: 20px;
  10. text-decoration: underline;
  11. }
  12. </style>
  13. <template>
  14. <div class="test-links">
  15. <a href="https://glance.duowan.com/links/toCommentaryDetail?commentaryId=49521">toCommentaryDetail?commentaryId=49521</a>
  16. <a href="https://glance.duowan.com/links/toIndex?nocache">toIndex</a>
  17. <a href="glance://toIndex">glance://toIndex</a>
  18. </div>
  19. </template>
  20. <script>
  21. import lib from 'lib'
  22. export default {
  23. data () {
  24. return {
  25. }
  26. },
  27. mounted () {
  28. }
  29. }
  30. </script>