Wie verwende ich Konstanten von Vue-Methoden in Vue-Vorlagen, um konstante Ergebnisse anzuzeigen?
P粉946437474
P粉946437474 2024-03-21 20:31:16
0
1
454

Ich habe diese Alarmkomponente und versuche im Textfeld const „item“ zu verwenden. Das const „item“ befindet sich in der Vue-Methode. Ist es möglich, das const „item“-Ergebnis in diesem Alarmtextfeld abzurufen? Ich habe {item} {{item}} ohne Erfolg ausprobiert. Danke

<alert
        v-if="warning"
        :show-alert="showAlert"
        :options="{
          body: "message" {item} {{item}}
        }"
        color="#ffc107"
        style="max-width: 670px; width: 100%;"
        @input="showAlert = false"
      />
...


export default {
  data () {
return {
  warning: '',
  showAlert: true,
  item: null
}


},

...

methods: {
const item = result.hits[0].refs.id[0]

...

P粉946437474
P粉946437474

Antworte allen(1)
P粉762447363

我的答案是否定的,为什么要在 HTML 模板中绑定常量?因为您的数据对象中已经有 item 属性。您可以更新该属性中的项目值,而不是在 const 中分配该值。

例如: this.item = '项目值' 而不是 const item = '项目值'

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage