如何在Vue js中避免按钮嵌套
P粉852114752
P粉852114752 2023-09-15 12:35:30
0
1
525

所以我有一个按钮,我想要多次使用,作为一个带有插槽的组件

<div
      name="checkAnswer"
      class="w-[70%] mx-[15%] flex items-center justify-center"
    >
      <button
        class="p-3 rounded-3xl shadow-md font-bold m-4 px-10 border-2 border-grey-800 hover:border-black hover:transition-all hover:duration-500"
      >
        <slot name="checkAnswer"></slot>
      </button>
    </div>

但是当我想要使用它时,我无法在插槽按钮上使用 @click="method",所以我使用了一个嵌套按钮(我有一个插槽按钮,然后另一个按钮只是用来使用 @click="method"):

<template #checkAnswer>
        <button
          @click="checkAnswer"
          :disabled="isAnswerChecked"
          :class="{
            ' text-gray-300 border-gray-300  ': isAnswerChecked,
          }"
        >
          Check answer
        </button>
      </template>

这样可以工作,但它是无效的HTML。我该如何解决?

P粉852114752
P粉852114752

全部回复(1)
P粉920835423

Vue3 SFC Playground

您需要使用v-bind="$attrs"将按钮组件的属性绑定到模板中的<button>上,并禁用模板的根元素的默认属性继承,使用inheritAttrs:false

此外,您不需要在这里使用命名插槽,只需使用默认插槽:

<script>
export default {
  inheritAttrs: false, // 这是禁用属性继承的设置
};
</script>
<template>
<div
      name="checkAnswer"
      class="w-[70%] mx-[15%] flex items-center justify-center"
    >
      <button v-bind="$attrs"
        class="p-3 rounded-3xl shadow-md font-bold m-4 px-10 border-2 border-grey-800 hover:border-black hover:transition-all hover:duration-500"
      >
        <slot></slot>
      </button>
    </div>
</template>

父组件:

<script setup>
import MyButton from './MyButton.vue';
import {ref} from 'vue';
const isAnswerChecked = ref(false);

const checkAnswer = () => {
  alert('check answer!');
  isAnswerChecked.value = true;
};

</script>
<template>
<MyButton @click="checkAnswer"
          :disabled="isAnswerChecked"
          :class="{
            ' text-gray-300 border-gray-300  ': isAnswerChecked,
          }"
        >
          Check answer
      </MyButton>
</template>
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板