We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On the next branch I tried this:
<div v-repeat="arrayOfStrings" v-component="{{$value}}"></div>
Which failed with a warning in the console about not finding an undefined component.
undefined
This does work however:
<template v-repeat="arrayOfStrings"> <div v-component="{{$value}}"></div> </template>
The text was updated successfully, but these errors were encountered:
fix #458 dynamic component using meta properties
76c4d47
Good catch, fixed in 76c4d47
Sorry, something went wrong.
No branches or pull requests
On the next branch I tried this:
Which failed with a warning in the console about not finding an
undefined
component.This does work however:
The text was updated successfully, but these errors were encountered: