Export individual vue components to be used by one off basis in applications.
stylesheet including the used classes should also be delivered separately for the classes that are used.
<script>
import { defineComponent } from 'vue';
import { UIButton } from '@karnama/vueish';
import '@karnama/vueish/ui-button.css'
export default defineComponent({
name: 'MyComponent',
components: { UIButton }
.
.
.
Export individual vue components to be used by one off basis in applications.
stylesheet including the used classes should also be delivered separately for the classes that are used.