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

vue2-mditor

v1.0.3

Published

支持 Vue 并允许插入 base64 格式图片的,简洁 markdown 文本编辑器

Downloads

2

Readme

vue2-mditor

支持 Vue 的简洁 markdown 文本编辑器

内部基于 mditor 并进行了改造,从而允许插入 base64 格式图片

Capture

capture

Requirements

vue

Installation

npm i vue2-mditor -S

Usage

  1. 在需要的 .vue 组件中,导入 vue2-mditor 编辑器:
    import editor from "vue2-mditor";
  2. 使用组件的 components 属性,将 editor 注册为私有组件:
    components: {
      editor
    }
  3. 将注册的组件名称,以标签形式,引入到对应的template 中即可:
    <editor :initVal="'**hello world**'" ref="editor"></editor>
  4. 初始化文本:为属性绑定 :initVal 提供字符串的值,来初始化编辑器的文本内容:
    <editor :initVal="'**这是初始化的文本内容**'"></editor>
  5. 获取原始的 markdown 文本
    • 添加 ref 属性:
      <editor ref="editor"></editor>
    • 使用 $refs.引用名称.getValue() 获取文本值:
      methods: {
        getVal() {
          // 点击按钮,获取编辑器的数据
          var txt = this.$refs.editor.getValue();
          console.log(txt);
        }
      }

Examples

<template>
  <div>
    <!-- 3. 以标签形式在页面上使用组件 -->
    <!-- :initVal="'**hello world**'" 为初始化的数据 -->
    <!-- ref 为组件的实例,专门用来调用实例上的方法的 -->
    <editor :initVal="'**hello world**'" ref="editor"></editor>

    <hr>
    <input type="button" value="获取文本框的值" @click="getVal">

    <h3>获取到的值为:</h3>
    <div style="font-size: 12px; width: 100%; word-break:break-all;">{{ msg }}</div>
  </div>
</template>

<script>
// 1. 导入 编辑器
import editor from "vue2-mditor";

export default {
  data() {
    return {
      msg: ""
    };
  },
  methods: {
    getVal() {
      // 点击按钮,获取编辑器的数据
      console.log(this.$refs.editor.getValue());
      this.msg = this.$refs.editor.getValue();
    }
  },
  components: {
    editor // 2. 注册为私有组件
  }
};
</script>

<style scoped></style>

也可以直接在下载的项目根目录中,先运行 npm i,再运行 npm run dev 查看项目效果

License