akxcv/vuera

VueWrapper results in empty component

lotsofone opened this issue · 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

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

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.