T E C h O C E A N H U B

Understand the Events in Vue3 JS – 2

This chapter provide the basic example of event handling in Vue JS

Example:

In this example, we can see, how to call method on button click event for that I have added 2 buttons, Add and Subtract to increase and decrease the counter respectively.

index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Vue Basics</title>
    <link
      href="https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap"
      rel="stylesheet"
    />
    <link rel="stylesheet" href="styles.css" />
    <script src="https://unpkg.com/vue@next" defer></script>
    <script src="app.js" defer></script>
  </head>
  <body>
    <header>
      <h1>Vue Events</h1>
    </header>
    <section id="userevents">
      <h2>Events in Vue</h2>
      <button v-on:click="add">Add</button>
      <button v-on:click="subtract">Subtract</button>
      <p>Result: {{ counter }}</p>
    </section>
  </body>
</html>

app.js

const app = Vue.createApp({
  data() {
    return {
      counter: 0,
    };
  },
  methods: {
    add() {
      this.counter = this.counter + 1;
    },
    subtract() {
      this.counter = this.counter - 1;
      // this.counter--;
    },
  },
});

app.mount('#userevents');

style.css

* {
  box-sizing: border-box;
}

html {
  font-family: 'Jost', sans-serif;
}

body {
  margin: 0;
}

header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  margin: 3rem auto;
  border-radius: 10px;
  padding: 1rem;
  background-color: #2196e4;
  color: white;
  text-align: center;
  width: 90%;
  max-width: 40rem;
}

#userevents {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  margin: 3rem auto;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  width: 90%;
  max-width: 40rem;
}

#userevents h2 {
  font-size: 2rem;
  border-bottom: 1px solid #ccc;
  color: #2196e4;
  margin: 0 0 1rem 0;
}

#userevents p {
  font-size: 1.25rem;
  font-weight: bold;
  border: 1px solid #2196e4;
  background-color: #2196e4;
  color: white;
  padding: 0.5rem;
  border-radius: 5px;
}

#userevents input {
  font: inherit;
  border: 1px solid #ccc;
}

#userevents input:focus {
  outline: none;
  border-color: #2196e4;
  background-color: #d7fdeb;
}

#userevents button {
  font: inherit;
  cursor: pointer;
  border: 1px solid #0355b3;
  background-color: #0355b3;
  color: white;
  padding: 0.05rem 1rem;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
  border-radius: 20px;
  margin: 0 1rem;
}

#userevents button:hover,
#userevents button:active {
  background-color: #0355b3;
  border-color: #0355b3;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26);
}

Output

Feel free to comment.

Below is my created application and is useful for people having Google Opinion Rewards.

https://play.google.com/store/apps/details?id=com.manasvi.sawant.rewardtocash

If you wanted to create a website, please visit my fiverr gig link below or contact me on support@techoceanhub.com.

https://www.fiverr.com/share/EdZ9L7

Copyright ©TechOceanhub All Rights Reserved.