用Vuetify单击v-btn

时间:2020-11-03 13:38:46

标签: vue.js vuetify.js

我无法通过单击v-btn执行方法。
我注意到这里也有类似的问题,但是它们对我没有帮助。

我的模板

<template>
  <v-app>
    <v-main>
      <v-card class="mx-auto" max-width="500" tile>
        <v-text-field
          label="Main input"
          hide-details="auto"
          v-model="newTodo"
        ></v-text-field>
        <v-list disabled>
          <v-subheader>TODOS</v-subheader>
          <v-list-item-group v-model="todos" color="primary">
            <v-list-item v-for="todo in todos" v-bind:key="todo.id">
              <v-list-item-content>
                <v-list-item-title v-text="todo.text"></v-list-item-title>
              </v-list-item-content>
              <v-list-item-action>
                <v-btn color="blue-grey" class="white--text" v-on:click="test">
                  <v-icon dark>mdi-delete</v-icon>
                </v-btn>
              </v-list-item-action>
            </v-list-item>
          </v-list-item-group>
        </v-list>
      </v-card>
    </v-main>
  </v-app>
</template>

我的脚本

<script>
export default {
  name: "app",
  data: () => ({
    todos: [],
    newTodo: ""
  }),
  created() {
    this.reload();
  },
  methods: {
    reload() {
      let vm = this;
      const axios = require("axios").create({
        baseURL: "http://localhost:5000",
        headers: {
          "Content-Type": "application/json"
        },
        responseType: "json"
      });
      axios
        .get("/get_todos")
        .then(function(response) {
          // handle success
          console.log(response);
          vm.todos = response.data;
        })
        .catch(function(error) {
          // handle error
          console.log(error);
        })
        .finally(function() {
          // always executed
        });
    },
    test() {
      console.log("test");
    }
  }
};
</script>

我尝试过的事情

我用“ @click”,“ @ onclick”和“ @ click.native”替换了“ v-on:click”,但在控制台上看不到“ test”。

插件版本

Vue:v2.6.12
Vuetify:v2.3.16

1 个答案:

答案 0 :(得分:-1)

正如 Michal Levý 所说,我尝试从 v-list 中删除 disabled。我成功执行了测试方法。