@stackcraft.io/qwik-voby
v0.1.5
Published
QwikVoby allows adding Voby components into existing Qwik application
Downloads
1
Readme
qwik-voby ⚡️
QwikVoby allows adding Voby components into existing Qwik application
NOTE: voby is a focused on the client component, so here we ignore all SSR and hydrate related options.
WARN: [email protected] vite plugin has bug?
How to Integrate into a Qwik app
Integration is pretty much the same as https://qwik.builder.io/docs/integrations/react/.
First, install @stackcraft-io/qwik-voby
with npm, pnpm or yarn. Instead of react
and react-dom
, you will need to install voby
. And don't forgot /** @jsxImportSource voby */
pnpm add @stackcraft-io/qwik-voby
create counter.tsx
/** @jsxImportSource voby */
import { qwikify$, observable } from '@qwikdev/qwik-voby';
// Create Voby component standard way
function Counter() {
const count = observable(0);
const incr = () => count((i) => i + 1);
return (
<button className="voby" onClick={incr}>
Count: {count}
</button>
);
}
// Convert Voby component to Qwik component
export const QCounter = qwikify$(Counter, { eagerness: 'hover' });
index.tsx
import { component$ } from '@builder.io/qwik';
import { QCounter } from './counter';
export default component$(() => {
return (
<main>
<QCounter />
</main>
);
});
vite.config.ts
// vite.config.ts
import { qwikVoby } from '@qwikdev/qwik-voby/vite';
export default defineConfig(() => {
return {
...,
plugins: [
...,
// The important part
qwikVoby()
],
};
});
Please keep in mind that this is an experimental implementation based on qwik-preact
implementation. So, there might be bugs and unwanted behaviours.