LiveInternet.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <!--LiveInternet counter-->
  3. <span v-if="renderComponent">
  4. <a href="https://www.liveinternet.ru/stat/amicru/" target="_blank">
  5. <img id="licnt5D9C" width="88" height="31" style="border:0" title="LiveInternet: показано число просмотров за 24 часа, посетителей за 24 часа и за сегодня" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAEALAAAAAABAAEAAAIBTAA7" alt=""/>
  6. </a>
  7. <script>
  8. (function(d,s){d.getElementById("licnt5D9C").src=
  9. "https://counter.yadro.ru/hit;amicru?t11.6;r"+escape(d.referrer)+
  10. ((typeof(s)=="undefined")?"":";s"+s.width+"*"+s.height+"*"+
  11. (s.colorDepth?s.colorDepth:s.pixelDepth))+";u"+escape(d.URL)+
  12. ";h"+escape(d.title.substring(0,150))+";"+Math.random()})
  13. (document,screen)
  14. </script>
  15. </span>
  16. <!--/LiveInternet-->
  17. </template>
  18. <script>
  19. export default {
  20. watch: {
  21. '$route.path'() {
  22. this.renderComponent = false;
  23. this.$nextTick(() => {
  24. this.renderComponent = true;
  25. });
  26. }
  27. },
  28. data() {
  29. return {
  30. renderComponent: true
  31. };
  32. },
  33. };
  34. </script>
  35. <style>
  36. </style>