bastidest / vue-step-progress

A simple Vue component that displays a Progress Bar with labels for each step
MIT License
53 stars 18 forks source link

Steps not rendering in Production build #20

Closed romanmartushev closed 2 years ago

romanmartushev commented 2 years ago

When I pulled this new release in (v1.0.0) the steps are not rendering. Getting error Invalid VNode type: Symbol() (symbol). By the looks of it this means there are multiple instances of Vue are being pulled in. However when developing this release it had no issue rendering in dev.

bastidest commented 2 years ago

I'll take a look at it. I will create a dev-server that serves the prebuilt files.

bastidest commented 2 years ago

Looks like I accidentally bundled vue in the production build. It is now included as external.

Relevant Changes: https://github.com/bastidest/vue-step-progress/commit/8ea63f2e794f174b02bda7fac2c069ed47c701c7

I created a new release for you to test: https://www.npmjs.com/package/vue-step-progress/v/1.0.1-rc1

romanmartushev commented 2 years ago

that fixed the issue! Thanks for the fast reply and fix!