refactor: use v-slot shorthand instead of deprecated scoped-slot
This commit is contained in:
parent
1f175a1702
commit
28459eaa42
@ -7,7 +7,7 @@
|
||||
Press any key to continue...
|
||||
</veui-alert>
|
||||
<veui-alert type="warning">
|
||||
<code>scope</code> is deprecated. Use <code>slot-scope</code> instead.
|
||||
<code>slot-scope</code> is deprecated. Use <code>v-slot</code> instead.
|
||||
</veui-alert>
|
||||
<veui-alert
|
||||
type="error"
|
||||
|
@ -4,7 +4,7 @@
|
||||
title="Browsers"
|
||||
:datasource="browsersDatasource"
|
||||
>
|
||||
<template slot-scope="{ items }">
|
||||
<template #default="{ items }">
|
||||
<div
|
||||
v-for="item in items"
|
||||
v-show="!item.hidden"
|
||||
|
@ -63,7 +63,7 @@
|
||||
width="160"
|
||||
align="right"
|
||||
>
|
||||
<template slot-scope="{ bid }">
|
||||
<template #default="{ bid }">
|
||||
{{ bid | currency }}
|
||||
</template>
|
||||
<template #foot>
|
||||
@ -75,7 +75,7 @@
|
||||
title="Last updated"
|
||||
align="center"
|
||||
>
|
||||
<template slot-scope="{ id, updateDate }">
|
||||
<template #default="{ id, updateDate }">
|
||||
<span :ref="`time-a-${id}`">{{ updateDate | date }}</span>
|
||||
<veui-tooltip :target="`time-a-${id}`">
|
||||
{{ updateDate | time }}
|
||||
@ -87,7 +87,7 @@
|
||||
field="operation"
|
||||
title="Opertaions"
|
||||
>
|
||||
<template slot-scope="{ index }">
|
||||
<template #default="{ index }">
|
||||
<veui-button
|
||||
ui="text"
|
||||
@click="del(index)"
|
||||
|
@ -41,7 +41,7 @@
|
||||
width="160"
|
||||
align="right"
|
||||
>
|
||||
<template slot-scope="{ bid }">
|
||||
<template #default="{ bid }">
|
||||
{{ bid | currency }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
@ -50,7 +50,7 @@
|
||||
title="Last updated"
|
||||
align="center"
|
||||
>
|
||||
<template slot-scope="{ updateDate }">
|
||||
<template #default="{ updateDate }">
|
||||
{{ updateDate | date }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
@ -58,7 +58,7 @@
|
||||
field="operation"
|
||||
title="Operations"
|
||||
>
|
||||
<template slot-scope="{ index }">
|
||||
<template #default="{ index }">
|
||||
<veui-button
|
||||
ui="text"
|
||||
@click="remove(index)"
|
||||
|
@ -20,7 +20,7 @@
|
||||
width="160"
|
||||
align="right"
|
||||
>
|
||||
<template slot-scope="{ bid }">
|
||||
<template #default="{ bid }">
|
||||
{{ bid | currency }}
|
||||
</template>
|
||||
<template #desc="{ close }">
|
||||
|
@ -20,7 +20,7 @@
|
||||
width="160"
|
||||
align="right"
|
||||
>
|
||||
<template slot-scope="{ bid }">
|
||||
<template #default="{ bid }">
|
||||
{{ bid | currency }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
@ -29,7 +29,7 @@
|
||||
title="Last updated"
|
||||
align="center"
|
||||
>
|
||||
<template slot-scope="{ updateDate }">
|
||||
<template #default="{ updateDate }">
|
||||
{{ updateDate | date }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
|
@ -29,7 +29,7 @@
|
||||
width="160"
|
||||
align="right"
|
||||
>
|
||||
<template slot-scope="{ bid }">
|
||||
<template #default="{ bid }">
|
||||
{{ bid | currency }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
@ -39,7 +39,7 @@
|
||||
align="center"
|
||||
width="200"
|
||||
>
|
||||
<template slot-scope="{ updateDate }">
|
||||
<template #default="{ updateDate }">
|
||||
{{ updateDate | date }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
@ -49,7 +49,7 @@
|
||||
width="140"
|
||||
fixed="right"
|
||||
>
|
||||
<template slot-scope="{ index }">
|
||||
<template #default="{ index }">
|
||||
<veui-button
|
||||
ui="text"
|
||||
@click="remove(index)"
|
||||
|
@ -20,7 +20,7 @@
|
||||
width="160"
|
||||
align="right"
|
||||
>
|
||||
<template slot-scope="{ bid }">
|
||||
<template #default="{ bid }">
|
||||
{{ bid | currency }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
@ -29,7 +29,7 @@
|
||||
title="Last updated"
|
||||
align="center"
|
||||
>
|
||||
<template slot-scope="{ updateDate }">
|
||||
<template #default="{ updateDate }">
|
||||
{{ updateDate | date }}
|
||||
</template>
|
||||
</veui-table-column>
|
||||
|
Loading…
Reference in New Issue
Block a user