npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-chem

v2.0.0

Published

0chem.com 分子绘图

Downloads

6

Readme

vue 化学分子绘图

简介

这是一个基于 vue3 开发的化学分子绘图组件,可以你直接实现化学分子绘图的功能。

本插件完整自主开发,只需要 vue3 基础框架就可以使用,让您可以轻松放心使用。

0chem.com 是插件的官方网站。

使用说明

1、本程序基于vuejs开发,无需其他插件即可使用。

2、本程序纯CSS显示效果,不包含任何图片,支持离线使用。

3、本程序默认字体是思源黑体,备用为系统的"微软雅黑"

4、本程序中的元素周期表的元素,使用的字体是程序内部字体,基于思源字体制作的独立编码。

5、本程序是开源分子绘图软件,您可以放心使用

6、欢迎来访问 0chem.com ,进群一起研发

使用方法

1. 安装

npm create vite@latest
>> vue
>> javascript
npm install vue-chemdraw

2. 引用

在 main.js 文件中修改如下:

import {createApp} from 'vue'
import App from './App.vue'
import chemDraw from "vue-chemdraw";

const app = createApp(App);
app.use(chemDraw);
app.mount('#app')

在 使用页面中直接使用即可

<draw-0chem class="chemDraw" />

需要说明的是 插件默认大小为 width:100%, height:100%,所以建议自定义一下插件的大小,避免高宽为0,而无法显示。

发布

2024年9月12日 v1.4.5 测试版