@nkr-articale/v-switch
v1.0.1
Published
A `<VSwitch>` component for Vue.js 3.
Downloads
2
Readme
VSwitch
A <VSwitch>
component for Vue.js 3.
Installation
yarn install @nkr-articale/v-switch
npm install @nkr-articale/v-switch
Usage
<VSwitch>
is modeled after the switch
statement we all know and love.
<template>
<v-switch :case="size">
<template #big>
Big
</template>
<template #small>
Small
</template>
<template #default>
Default
</template>
</v-switch>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue'
import VSwitch from '@nkr-articale/v-switch'
export default defineComponent({
components: {
VSwitch
},
setup() {
return {
size: ref('big')
}
}
})
</script>
It also works with dynamic slots:
<template>
<v-switch :case="number">
<template
v-for="num in numbers"
v-slot:[num]
>
Number: {{ num }}
</template>
<template #default>
Default
</template>
</v-switch>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue'
import VSwitch from '@nkr-articale/v-switch'
export default defineComponent({
components: {
VSwitch
},
setup() {
const number = ref(1)
const numbers = [1,2,3,4,5]
return {
number,
numbers
}
}
})
</script>
If you are using the browser build, or you like to register components globally, that works fine, too:
// with a bundler
import { createApp } from 'vue'
const app = createApp(/* ... */)
app.component('v-switch', VSwitch)
// or using the global build
// assumes Vue is available globally - VSwitch is available globally via `VSwitch`
const app = Vue.createApp(/* ... */)
app.component('v-switch', VSwitch)
Builds
There are three builds available.
dist/v-switch.cjs,js
: for SSR in node.js (usingrequire
)dist/v-switch.esm-bundler.js
: for bundlers like Webpack and Rollup- also works as an ES module in the browser using
<script type="module">
- also works as an ES module in the browser using
dist/v-switch.browser.js
: global build (iife)
Type definitions are also included.
Generally your build tool will be able to figure out which bundle to use, but you can be explicit if you need to.
Other
I recorded some content for my YouTube channel relating to this component:
- Building the component: https://youtu.be/KPV6-H6-IxM
- Building for production and publishing it on npm: https://youtu.be/KwoO2afF5cg
License
MIT