Skip to content

Not initialize boolean property properly #1020

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
TerenceZ opened this issue Jul 7, 2015 · 0 comments
Closed

Not initialize boolean property properly #1020

TerenceZ opened this issue Jul 7, 2015 · 0 comments

Comments

@TerenceZ
Copy link

TerenceZ commented Jul 7, 2015

Example:

<test></test>

<script>
new Vue({
    el: "body",
    components: {
        "test": {
            props: [
                {
                    name: "prop",
                    type: Boolean
                }
            ],
            data() {
                return {
                    prop: true
                };
            }
        }
    }
});
</script>

After initialized, the test's prop is set to false, not the specified value true, who initialized in data(). I find that the compiler set the boolean value to false as default before initializing the default data).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant