How to define a variable in vue component ? (Vue.J

2019-05-04 19:08发布

My vue component is like this :

<template>
    <div>
        <div class="panel-group"v-for="item in list">
            <div class="col-md-8">
                <div class="alert">
                    {{ status = item.received_at ? item.received_at : item.rejected_at }}
                    <p v-if="status">
                        {{ status }} - {{ item.received_at ? 'Done' : 'Cancel' }}
                    </p>
                    <p v-else>
                        Proses
                    </p>
                </div>
            </div>
        </div>
    </div>
</template>

<script>
    export default {
        ...
        computed: {
            list: function() {
                return this.$store.state.transaction.list
            },
            ...
        }
    }
</script>

I want define the status variable

So, the status variable can be used in condition

I try like this :

{{ status = item.received_at ? item.received_at : item.rejected_at }}

But, seems it was wrong

How I define it correctly?

2条回答
小情绪 Triste *
2楼-- · 2019-05-04 19:55

You can use a method to have the functionality as the item variable would not be present outside the scope of the v-for

 ...
 <div class="alert">
   <p v-if="status(item)">
      {{ status(item) }} - {{ item.received_at ? 'Done' : 'Cancel' }}
   </p>
   <p v-else>
      Proses
   </p>
 </div> 
 ...

and in the component:

methods: {
  ...
  status (item) {
    return (item) 
             ? (item.received_at) ? item.received_at : item.rejected_at
             : false
  }
  ...
}
查看更多
ら.Afraid
3楼-- · 2019-05-04 19:55

You need to use data :

export default {
    ...
    data: function() {
        return {
            status: false
        }
    },
    computed: {
        list: function() {
            return this.$store.state.transaction.list
        },
        ...
    }
}
查看更多
登录 后发表回答