We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Create a Vue template component:
<template> <div class="{{snakeCase name}}"> {{msg}} </div> </template>
As a result, the line {{msg}} disappears, although it does not refer to the name of the component.
{{msg}}
<template> <div class="component_name"> </div> </template>
The text was updated successfully, but these errors were encountered:
Blueprint uses Handlebars internally, can you try something like: https://stackoverflow.com/a/20570734
Sorry, something went wrong.
Yes, exactly, your advice helped to correct the error. Thank you. The issue can be closed.
No branches or pull requests
Create a Vue template component:
As a result, the line
{{msg}}
disappears, although it does not refer to the name of the component.The text was updated successfully, but these errors were encountered: