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
Hi, is it possible to pass a content value from slot name reference such as footer slot? ex.
My component
<template> <div> <base-card :icon="'angle-down'" :title="'Github'"> //Slot <slot name="content" slot="content"></slot> // or Html <div slot="content"> <div> <h1>My custom Card Content</h1> <p>Hello world</p> </div> </div> <card-footer-item slot="footer" :href="'https://github.com'"> <span class="icon is-small"> <i aria-hidden="true" class="fa fa-refresh"></i> </span> Refresh token </card-footer-item> </base-card> </div> </template> <script> import {BaseCard, CardFooterItem} from 'vue-bulma-card'; export default { components: { BaseCard, CardFooterItem } } </script>
<test> <div slot="content"> <div> <h1>My custom Card Content</h1> <p>Hello world</p> </div> </div> </test>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, is it possible to pass a content value from slot name reference such as footer slot?
ex.
My component
The text was updated successfully, but these errors were encountered: