Skip to content
On this page

items

items is where you give the array containing your items.

html
<VueQuickActions :items="items" />
js
import { Item } from 'vue-quick-actions';

const items: Item[] = [
    {
        key: 'console-write', // Key should be unique
        label: "Log 'hey' to console",
        onSelect() {
            console.log('hey');
        }
    }
]