如何基于模型设置警报类型?

时间:2019-05-05 15:30:37

标签: vuetify.js

我要根据模型设置警报类型;但是,我找不到一个例子。

我试图在v-alert内这样做:

<v-alert v-model="alert"
         type="result === true ? success : warning">
  <span> {{message}} </span> 
</v-alert>

1 个答案:

答案 0 :(得分:0)

这是您可能需要的Code Example

的简单示例
<v-alert :value="true" :type="result ? 'success' : 'warning'">

data(){
    return {
      result: true
    }
}

还要看一下Vue Docs