Registry / web-framework / jtui-vite

jtui-vite

JSON →
library1.0.24jsnpmunverified

Vue 3 UI component library built with Vite, version 1.0.24. Designed for Vue 3 projects using Vite as the bundler. It depends on Vue 3 and Element Plus as peer dependencies. Provides a set of reusable UI components with a focus on integration with Element Plus. The library is published as an npm package and is intended for use in modern Vue 3 applications. Current release cadence is not documented; likely irregular minor updates.

npm install jtui-vite
INSTALL
IMPORT
SIG · JTUI-VITE
J
jtui-vite
web-frameworkjavascriptv1.0.24
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18223 runs
build_error
glibc
node 18223 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

jtui-vite
import jtui from 'jtui-vite'
const jtui = require('jtui-vite')
ESM only; use import syntax. Typical usage: import jtui from 'jtui-vite' then app.use(jtui).
Button
import { Button } from 'jtui-vite'
Named export for individual component. May require registration.
Input
import { Input } from 'jtui-vite'
Named export for individual component. May require registration.

Shows how to install and use the jtui-vite library in a Vue 3 project with Vite, including global registration via app.use().

import { createApp } from 'vue'; import jtui from 'jtui-vite'; import 'jtui-vite/dist/style.css'; import App from './App.vue'; const app = createApp(App); app.use(jtui); app.mount('#app');
Debug
Known issues
gotchaRequires peer dependencies: element-plus and vue. Not installed automatically; you must install them manually.
fix
Add element-plus and vue to your project's dependencies.
affects: >=1.0.0
gotchaPackage provides default export only for app.use; named exports for individual components might not work without proper tree-shaking setup.
fix
Use `import jtui from 'jtui-vite'` and `app.use(jtui)` to register all components, or import individual components as named exports if documented.
affects: >=1.0.0
gotchaCSS must be imported separately: `import 'jtui-vite/dist/style.css'`.
fix
Add the CSS import to your entry file.
affects: >=1.0.0
Errors
Common errors & fixes
Cannot find module 'jtui-vite' or its corresponding type declarations.
Missing dependency or incorrect import path.
fix
Run `npm install jtui-vite` and ensure it's in package.json dependencies.
Unknown custom element <jt-button> - did you register the component correctly?
Component not globally registered via app.use().
fix
Add `import jtui from 'jtui-vite'` and `app.use(jtui)` in your main.js/ts.
Upgrade
Version history
1.0.24latest on npm
Audit
Dependencies
element-plusrequiredRequired as peer dependency for UI components
vuerequiredCore framework required as peer dependency
Agent activity
2 hits · last 30 days
node
2
Resources