v0.1.9

Warning

This library is under heavy development and the documentation is not complete.

Dropdown

Use the dropdown component to create dropdowns for your pages.
Dropdown content ..
1<rasm:dropdown>
2    <x-slot:trigger>
3        <rasm:button icon="user" label="Dropdown" icon:trailing="chevron-down" @click="openDropdown = ! openDropdown" variant="outline" /> 
4    </x-slot:trigger>
5
6    <div class="p-3 bg-white rounded-md shadow-md mt-0">
7        Dropdown content .. 
8    </div>
9</rasm:dropdown>
Dropdown content
Image dropdown content ..
1<rasm:dropdown>
2    <x-slot:trigger>
3        <rasm:button icon="dots" @click="openDropdown = ! openDropdown" variant="outline" /> 
4    </x-slot:trigger>
5
6    <div class="p-3 bg-white rounded-md shadow-md mt-0">
7        Dropdown content ..  
8    </div>
9</rasm:dropdown>