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

@efox/emp-vuett

v1.0.0

Published

Vue2 component using in Vue3

Downloads

38

Readme

emp-vuett

Use the Vue2 component on Vue3 to seamlessly integrate Vue3 Vue2👯

📦 Installation

yarn add @efox/emp-vuett or npm i @efox/emp-vuett

👨‍💻Usage

Use Vue2 components in Vue3

  1. Create an empty element and define its id for mounting the Vue2 component
  2. Use Vue2InVue3 to convert Vue2 component to Vue3
  3. Mount the component to Vue3
<template>
  <div>
    <h1>VUE 3 Project</h1>
    <!-- Create an empty element to mount the Vue2 component, and assign a value to the element’s id -->
    <div id="content"></div>
    <!-- Components from Vue 2 to Vue 3 -->
    <conent-in-vue3
      :dataProps="num"
      :methodProps="propsFunc"
      @myEvent="emitFunc"
    />
  </div>
</template>

<script>
// Vue2 components Content
import Content from "@v2b/Content";
// use Vue2InVue3
import {Vue2InVue3} from "emp-vuett";
// Pass in Vue2 component and empty element id to Vue2InVue3
const ContentInVue3 = Vue2InVue3(Content, "content");

export default {
  name: "App",
  components: {
    // Mount the converted Vue2 component
    "conent-in-vue3": ContentInVue3,
  },
  data() {
    return {
      component: Content,
      num: 0,
    };
  },
  methods: {
    propsFunc() {
      console.log("Vue3 to Vue2 Method Props");
    },
    emitFunc() {
      this.num++;
    },
  },
  setup() {},
  mounted() {},
};
</script>

Precautions for using Vue2 components by Vue3:

Vue2 Use the custom event passed by Vue3 to change the function name kebab-case to camelCase and add the prefix on For example: calling @my-event needs to be written as onMyEvent

The Vue2 component used above:

<template>
  <div>
    <div class="v2box">{{ title }}</div>
    <button class="button" @click="add">Vue2 Add Button</button>
    <div class="v2box">Prop: {{ dataProps }}</div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      title: "Vue2 Component",
    };
  },
  props: {
    dataProps: { type: Number, required: false },
    methodProps: { type: Function, required: false },
  },
  methods: {
    add() {
      // Vue2 uses the custom event passed by Vue3 to change the function name kebab-case to camelCase and add the prefix on
      // For example: calling @my-event needs to be written as onMyEvent
      this.$emit("onMyEvent");
    },
  },
  mounted: function () {
    this.methodProps && this.methodProps();
  },
};
</script>

<style>
.v2box {
  font-size: 38px;
  color: green;
  font-weight: bold;
}
.button {
  width: 200px;
  padding: 20px 0;
}
</style>