Vue v-if failure?

clipboard.png
fullScreenfalse

clipboard.png

clipboard.png
div was not uninstalled. What could be the reason? Help me!

Mar.07,2021

did you define it in data?


where is the definition of fullScreen in your vif? You should define it in the component computed, and then return your vuex


The state in

vuex is not registered in the component and is not a responsive variable, so the view cannot be updated naturally

computed: {
    fullScreen() {
        return this.$store.state.fullScreen;
    }
}
Menu