如何在Vue中观察组件外部的数据更改?

时间:2018-02-07 07:29:43

标签: javascript vue.js vuejs2 computed-properties

我想在authenticated更改时自动设置this.$auth.isAuthenticated()。可以使用computedwatch吗?

<script>
  export default {
    data: () => ({
      drawer: null,
      dark: true,
    }),
    methods: {
      signOut: function(){
        this.$auth.destroyToken()
        this.$router.push('/')
      }
    },
    computed: {
      authenticated: function(){
        return this.$auth.isAuthenticated()
      }
    }
  }
</script>

0 个答案:

没有答案