vuera icon indicating copy to clipboard operation
vuera copied to clipboard

VueWrapper results in empty component

Open lotsofone opened this issue 4 years ago • 3 comments

I am using vue in react, here are my files: test.vue

<template>
  <div>
    <a>this is vue</a>
  </div>
</template>

testvue.js

import React from 'react'
import { VueWrapper } from 'vuera'
import Test from './test.vue'

export default () => {
    return <div>
        this is react
        <VueWrapper
            component={Test}
            message='Hello from Vue!'
        />
    </div>
}

and then I rendered the Testvue component, but only this is react show up, this is vue is missing

lotsofone avatar Mar 09 '20 12:03 lotsofone

Here is an example project to show how I failed https://github.com/lotsofone/try-vue-in-react

lotsofone avatar Mar 09 '20 12:03 lotsofone

Any update on the issue? This plugin seems unusable. Can anyone suggest if this works with vue or not? As per the documentation its not working at all.

fareye-baldeep avatar Jun 08 '20 11:06 fareye-baldeep

https://github.com/timsayshey/vuera-react-vue-demo-app

MayRain1999 avatar Dec 22 '20 02:12 MayRain1999