Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <template>
  2. <div :style="css"></div>
  3. </template>
  4.  
  5. <script>
  6. export default {
  7. computed: {
  8. css () {
  9. let width = window.innerWidth
  10.  
  11. // ... mobile { ... styles }
  12. // ... desktop { ... styles }
  13.  
  14. // ... if width is less than 700, return mobile
  15. // ... if width greater than 700, return desktop
  16. }
  17. }
  18. }
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement