You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { mdiFolder, mdiFolderOutline } from '@mdi/js'
68
+
69
+
export default {
70
+
setup() {
71
+
return {
72
+
mdiFolder,
73
+
mdiFolderOutline,
74
+
}
75
+
},
76
+
}
77
+
</script>
78
+
```
79
+
49
80
#### Element with actions
50
81
Wrap the children in a template. If you have more than 2 actions, a popover menu and a menu
51
82
button will be automatically created.
@@ -289,8 +320,8 @@ Just set the `pinned` prop.
289
320
<div:class="{ [icon]: icon }"
290
321
class="app-navigation-entry-icon">
291
322
<NcLoadingIconv-if="loading" />
292
-
<!-- @slot Slot for the optional leading icon -->
293
-
<slotv-elsename="icon" />
323
+
<!-- @slot Slot for the optional leading icon. This slots get the `active`-slot attribute passed which is based on the vue-routers active route or the `active` prop.-->
0 commit comments