Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <template>
  2. <div class="hello">
  3. <button v-on:click = "numero" > Contatore </button>
  4. <h1>Bisogna sempre osservare le stelle, quante sono: {{cont}}</h1>
  5. </div>
  6. </template>
  7.  
  8. <script>
  9. export default {
  10. name: 'Salutone',
  11. data () {
  12. return {
  13. cont: 0
  14. }
  15. },
  16. methods: {
  17. numero: function () {
  18. this.cont = Math.round(Math.random() * 1000000)
  19. }
  20. }
  21. }
  22. </script>
  23.  
  24. <!-- Add "scoped" attribute to limit CSS to this component only -->
  25. <style scoped>
  26. h1{
  27. font-weight: normal;
  28. color: #000000;
  29. }
  30. a {
  31. color: #42b983;
  32. }
  33. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement