0
是否可以動態分配指令?我想根據名爲type的變量來分配成功或錯誤。我目前這樣做(我想替換):基於變量的vuejs指令
v-snackbar(v-if="type === 'success'", success, timeout=3000, bottom=true, right=true, v-model='snackbar') {{ snackbarText }}
v-btn(flat, @click.native="snackbar = false")
v-icon close
v-snackbar(v-if="type === 'error'", error, timeout=3000, bottom=true, right=true, v-model='snackbar') {{ snackbarText }}
v-btn(flat, @click.native="snackbar = false")
v-icon close
你的意思是動態分配一個屬性?這就是你的例子似乎做的 – thanksd
我想用類型替換(v-if =「type ==='success'」,成功) – Chris