![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@bytetrade/bytetrade-ui
Advanced tools
ByteTrade基于 vue3.x + ts + vue-cli5 开发组件的 npm 包
npm install
npm run serve
npm run build
npm run lint
npm run lib
tip : 发布之前需要登录
首先需要到 npm 上注册一个账号,注册过程略。 如果配置了淘宝镜像,先设置回 npm 镜像:
$ npm config set registry http://registry.npmjs.org
然后在终端执行登录命令,输入用户名、密码、邮箱即可登录。
//登录
$ npm login
执行发布命令,发布组件到 npm
//发布
$ npm publish
发布成功后稍等几分钟,即可在 npm 官网搜索到。(会发送邮件)
在需要使用的 vue 项目中 npm install @bytetrade/bytetrade-ui 添加进来,然后在 main.js 中进行全局注册,如下:
import { createApp } from "vue";
import App from "./App.vue";
import templateUi from "@bytetrade/bytetrade-ui";
const app = createApp(App);
//组件注册
app.use(templateUi);
app.mount("#app");
import { createApp } from "vue";
import App from "./App.vue";
import { BtLoading, BtUploader } from "@bytetrade/bytetrade-ui";
const app = createApp(App);
//组件注册
app.use(BtLoading);
app.mount("#app");
// ./boot/smartEnginEntrance.js
import { boot } from 'quasar/wrappers';
import BytetradeUi from '@bytetrade/bytetrade-ui';
export default boot(async ({ app }) => {
app.use(BytetradeUi);
});
// ./boot/smartEnginEntrance.js
import { boot } from 'quasar/wrappers';
import { BtLoading } from "@bytetrade/bytetrade-ui";
export default boot(async ({ app }) => {
app.use(BtLoading);
});
<template>
<div>
<BtLoading
:show="true"
textColor="#ffffff"
color="#ffffff"
text="Loading"
backgroundColor="rgba(0, 0, 0, 0.4)"
/>
</div>
</template>
<template>
<div>
<BtUploader
:width="100"
:height="100"
type="img"
:size="5"
name="upload"
accept=".jpg, image/*"
action="1d37ca110a2a8d40/upload/"
:config="config"
:parmas="parmas"
@ok="ok"
@fail="fail"
>
<span>
uploader
</span>
</BtUploader>
</div>
</template>
<TerminusAvatar
did="a11592"
account="seal"
:size="48"
/>
FAQs
ByteTrade基于 vue3.x + ts + vue-cli5 开发组件的 npm 包
The npm package @bytetrade/bytetrade-ui receives a total of 9 weekly downloads. As such, @bytetrade/bytetrade-ui popularity was classified as not popular.
We found that @bytetrade/bytetrade-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.