mirror of
https://github.com/bakateam/merakiui.git
synced 2025-12-10 15:35:34 +00:00
New components
This commit is contained in:
79
components/ui/Breadcrumbs/Simple.vue
Normal file
79
components/ui/Breadcrumbs/Simple.vue
Normal file
@@ -0,0 +1,79 @@
|
||||
<template>
|
||||
<view-component :name="name" :code="code">
|
||||
<div class="flex items-center justify-center px-3 py-8" slot="component">
|
||||
<div class="flex items-center py-4 overflow-y-auto whitespace-nowrap">
|
||||
<a href="#" class="text-gray-600 dark:text-gray-200">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z" />
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<span class="mx-5 text-gray-500 dark:text-gray-300">
|
||||
/
|
||||
</span>
|
||||
|
||||
<a href="#" class="text-gray-600 dark:text-gray-200 hover:underline">
|
||||
Account
|
||||
</a>
|
||||
|
||||
<span class="mx-5 text-gray-500 dark:text-gray-300">
|
||||
/
|
||||
</span>
|
||||
|
||||
<a href="#" class="text-gray-600 dark:text-gray-200 hover:underline">
|
||||
Profile
|
||||
</a>
|
||||
|
||||
<span class="mx-5 text-gray-500 dark:text-gray-300">
|
||||
/
|
||||
</span>
|
||||
|
||||
<a href="#" class="text-blue-600 dark:text-blue-400 hover:underline">
|
||||
Settings
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</view-component>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
name: 'Simple',
|
||||
code: `
|
||||
<div class="flex items-center py-4 overflow-y-auto whitespace-nowrap">
|
||||
<a href="#" class="text-gray-600 dark:text-gray-200">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" viewBox="0 0 20 20" fill="currentColor">
|
||||
<path d="M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z" />
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
<span class="mx-5 text-gray-500 dark:text-gray-300">
|
||||
/
|
||||
</span>
|
||||
|
||||
<a href="#" class="text-gray-600 dark:text-gray-200 hover:underline">
|
||||
Account
|
||||
</a>
|
||||
|
||||
<span class="mx-5 text-gray-500 dark:text-gray-300">
|
||||
/
|
||||
</span>
|
||||
|
||||
<a href="#" class="text-gray-600 dark:text-gray-200 hover:underline">
|
||||
Profile
|
||||
</a>
|
||||
|
||||
<span class="mx-5 text-gray-500 dark:text-gray-300">
|
||||
/
|
||||
</span>
|
||||
|
||||
<a href="#" class="text-blue-600 dark:text-blue-400 hover:underline">
|
||||
Settings
|
||||
</a>
|
||||
</div>`
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user