Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

[Bug Report] Custom class not applied (vue 3) #10

@daronspence

Description

@daronspence

Describe the bug
class attribute is not added/merged when using version@next

To Reproduce
Steps to reproduce the behavior:

  1. Install @next
  2. Create a single component that imports the package
  3. Try to apply a new class attribute; bound or otherwise, does not matter
  4. Assert the extra classes are not added to the element

Expected behavior
A class is added to the rendered component.

My file Tooltip.vue

<template>
  <VueCustomTooltip :label="content" :multiline="true" class="my-class-that-is-not-applied">
    <slot />
  </VueCustomTooltip>
</template>

<script>
import VueCustomTooltip from '@adamdehaven/vue-custom-tooltip';

export default {
  components: {
    VueCustomTooltip,
  },
  props: {
    content: {
      type: String,
      required: true,
    },
  },
};

Metadata

Metadata

Assignees

Labels

bugSomething isn't workinggood first issueGood for newcomers

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions