# omi-vueify

> Bridge between omi and vue

Latest version **0.0.13** (published 2026-09-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install omi-vueify
pnpm add omi-vueify
yarn add omi-vueify
bun add omi-vueify
```

## Health

**Score 75/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; high quality score; popular repo.

Warnings: low downloads; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.0.13 |
| Published | 2026-09-24 |
| First published | 2025-04-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13268 |
| Maintainers | dntzhang |
| Keywords | omi, web-components, vueify |

## Links

- npm: https://www.npmjs.com/package/omi-vueify
- Repository: https://github.com/Tencent/omi
- Homepage: http://omijs.org
- Issues: https://github.com/Tencent/omi/issues/
- npm.io page: https://npm.io/package/omi-vueify

## Alternatives

- [@commercetools/sync-actions](https://npm.io/package/@commercetools/sync-actions.md) — 25.1K weekly downloads
- [cwait](https://npm.io/package/cwait.md) — 21.4K weekly downloads
- [@ledgerhq/hw-app-cosmos](https://npm.io/package/@ledgerhq/hw-app-cosmos.md) — 4.2K weekly downloads
- [@financial-times/o-loading](https://npm.io/package/@financial-times/o-loading.md) — 2.8K weekly downloads
- [fa](https://npm.io/package/fa.md) — 185 weekly downloads

## Recent versions

- 0.0.13 (latest) — 2026-09-24
- 0.0.12 — 2025-09-02
- 0.0.11 — 2025-08-22
- 0.0.10 — 2025-07-08
- 0.0.9 — 2025-07-08
- 0.0.8 — 2025-06-10
- 0.0.7 — 2025-05-12
- 0.0.6 — 2025-04-28
- 0.0.5 — 2025-04-27
- 0.0.4 — 2025-04-25
- 0.0.3 — 2025-04-23
- 0.0.2 — 2025-04-23
- 0.0.1 — 2025-04-23
- 0.0.0 — 2025-04-23

## README

## omi-vueify

Bridge between omi and vue.

## Install

```js
npm i omi-vueify
```

## Usage

```ts
import { omiVueify } from 'omi-vueify';

const MyComponent = omiVueify('my-component', {
  // 需要转发到 web components 的方法
  methodsNames: []
});
```

Vue Template:

```html
  <MyComponent
    :name="name"
    :obj="obj"
    @hello="handleHelloEvent"
  >
    <p>{{name}}</p>
    <template #foo>
      <div>foo slot内容</div>
    </template>
    <template #bar>
      <div>bar slot内容</div>
    </template>
  </MyComponent>
```

---
_Source: https://npm.io/package/omi-vueify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
