UNPKG

@aotearoan/neon

Version:

Neon is a lightweight design library of Vue 3 components with minimal dependencies.

23 lines (22 loc) 536 B
import { defineComponent as e } from "vue"; const n = e({ name: "NeonTab", props: { /** * True if the current tab is the visible tab. */ selected: { type: Boolean, required: !0 }, /** * Id of the tab (matches the key in NeonTabModel). */ id: { type: String, default: null }, /** * Use fade transition when switching tabs. This is useful to prevent a reflow. */ transition: { type: Boolean, default: !0 } } }); export { n as default }; //# sourceMappingURL=NeonTab.es.js.map