Detailed explanation of Vue Notepad example

Detailed explanation of Vue Notepad example

This article example shares the specific code of Vue to implement the notepad function for your reference. The specific content is as follows

The example does not have many functional points. The main difficulty lies in adding and deleting the note text object array and binding synchronization events to components.

Core code

<section id="todoapp">
      <!-- Input box-->
      <header class="header">
        <h1>Notepad</h1>
        <input
                v-model="note"
          autofocus="autofocus"
          autocomplete="off"
          placeholder="Please enter the task"
          class="new-todo"
        />
        <div style="text-align: right;width: 90%;height: 3%;">
          <button value="Record" style="text-align: center" @click="addnote">Record</button>
        </div>

      </header>
      <!-- List area -->
      <section class="main">
        <ul class="todo-list">
          <li class="todo" v-for="(n,index) in notes">
            <div class="view">
              <span class="index">{{index+1}}</span> <label>{{n}}</label>
              <button class="destroy"></button>
            </div>
          </li>

        </ul>
      </section>
      <!-- Statistics and clearing -->
      <footer class="footer">
        <span class="todo-count"><strong>{{notes.length}}</strong> items left </span>
        <button class="clear-completed" @click="delnote">
          Clear
        </button>
      </footer>
    </section>
      <script>
      let vue = new Vue({
        el:"#todoapp",
        data:{
          note:"Study hard and make progress every day",
          index:0,
          notes:[
                  "Write code",
                  "Eat, Eat",
                  "Sleep"
          ]
        },
        methods:{
          addnote:function () {
            this.notes.push(this.note);
          },
          delnote:function () {
            this.notes = [];
          }
        }
      });
</script>

For tutorials on vue.js components, please click on the special vue.js component learning tutorial to learn.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed exploration of vuex 2.0 and building a notepad application using vuejs 2.0 + vuex 2.0
  • Local notepad example based on vue2.0+vuex+localStorage
  • Vue implementation of notepad case
  • Vue implements simple notepad
  • Vue implements simple notepad function
  • Vue implements small notepad function
  • Detailed explanation of vue simple notepad development
  • Vue implements notepad function
  • vue-cli+webpack notepad project creation
  • Vuex implements notepad function

<<:  Detailed explanation of MySQL subqueries (nested queries), join tables, and combined queries

>>:  A brief analysis of how to set the initial value of Linux root

Recommend

MySQL 8.0.18 adds users to the database and grants permissions

1. It is preferred to use the root user to log in...

How to run the react project on WeChat official account

Table of contents 1. Use the a tag to preview or ...

JavaScript to implement mobile signature function

This article shares the specific code of JavaScri...

Use of TypeScript Generics

Table of contents 1. Easy to use 2. Using generic...

Sample code for implementing menu permission control in Vue

When people are working on a backend management s...

MySQL permission control details analysis

Table of contents 1. Global level 2. Database lev...

win2008 server security settings deployment document (recommended)

I had been working on the project before the New ...

Sample code for a large drop-down menu implemented in pure CSS

This is a large drop-down menu implemented purely...

TCP socket SYN queue and Accept queue difference analysis

First we must understand that a TCP socket in the...

Install and configure ssh in CentOS7

1. Install openssh-server yum install -y openssl ...

Solutions to problems using addRoutes in Vue projects

Table of contents Preface 1. 404 Page 1. Causes 2...

Nodejs global variables and global objects knowledge points and usage details

1. Global Object All modules can be called 1) glo...

Docker builds kubectl image implementation steps

If the program service is deployed using k8s inte...

Use CSS's clip-path property to display irregular graphics

clip-path CSS properties use clipping to create t...