UNPKG
vue-material-you
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Material design 3 UI framework for Vue 3
vue-material-you
/
dist
/
src
/
composables
/
use-array-link
/
index.d.ts
9 lines
(8 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Ref
}
from
"vue"
;
/** * Link a component to a given Ref Array, creating an unique id and the necessary events. */
export
default
function
(
array
:
Ref
<
Array
<
string
>>
): {
id
:
Ref
<
string
>;
index
:
import
(
"vue"
).
ComputedRef
<
number
>; };