0

我是 Vue 的新手,我正在尝试做一个简单的事情,即b-field在单击按钮后显示结果。

下面是我的 Login.vue 代码

<template>
    <section id="login">
        <h1>Login</h1>
        <b-field label=""
            type="is-warning"
            message="Please enter a valid email">
            <b-input type="email" name="email" v-model="input.email" placeholder="E-mail"></b-input>
        </b-field>
        <b-field label=""
            type="is-warning"
            message="Please enter your password">
            <b-input type="password" name="password" v-model="input.password" placeholder="Password"></b-input>
        </b-field>
        <b-field message="hohoho"
            type="is-danger"
            name="result"
            >
            <button type="button" v-on:click="login()" class="button">Login</button>
        </b-field>
    </section>
</template>

<script>
    export default {
        name: 'Login',
        data () {
            return {
                input: {
                    email: "",
                    password: ""
                }
            }
        },
        methods: {
            login () {
                if(this.input.email != "" && this.input.password != "") {
                    if(this.input.email == this.$parent.mockAccount.email && this.input.password == this.$parent.mockAccount.password) {
                        this.$emit("authenticated", true)
                        this.$router.replace({ name: "secure" })
                    } else {
                        this.result = "The email and / or password is incorrect"
                        console.log("The email and / or password is incorrect")
                    }
                } else {
                    this.result = "An email and password must be present"
                    console.log("An email and password must be present")
                }
            }
        }
    }
</script>

我在更新b-field带有名称的内容时遇到问题result...this.result不会更新b-field.

4

1 回答 1

2

我猜你想更新这个元素的消息属性?

<b-field message="hohoho"
            type="is-danger"
            name="result">
            <button type="button" v-on:click="login()" class="button">Login</button>
</b-field>

如果我是正确的,您只需将结果道具绑定到消息属性,如下所示:

<b-field :message="result"
            type="is-danger"
            name="result">
            <button type="button" v-on:click="login()" class="button">Login</button>
</b-field>

注意:message="result",它是v-bind:message="result".

另外,非常重要的是,您需要在 data 中定义 result 属性

data () {
    return {
        input: {
            email: "",
            password: ""
        },
        result: ""
    }
},

更多信息在这里

于 2018-08-16T07:35:54.110 回答