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
If that makes sense...
My column headers change according to the data, dynamically.
However, I'd like to target certain columns where I don't know the name of the slot at coding time. So, I want to do
<template #item-<SOME_VARIABLE_NAME>
Is this possible?
The text was updated successfully, but these errors were encountered:
Almost immediately answering my own question by reading the docs
<template v-slot=[slotname]>
Elsewhere...
const slotname = 'item-' + some_variable_name;
(Dynamic arguments which was new to me)
Sorry, something went wrong.
No branches or pull requests
If that makes sense...
My column headers change according to the data, dynamically.
However, I'd like to target certain columns where I don't know the name of the slot at coding time. So, I want to do
<template #item-<SOME_VARIABLE_NAME>
Is this possible?
The text was updated successfully, but these errors were encountered: