48 lines
1.4 KiB
Vue
48 lines
1.4 KiB
Vue
![]() |
<template>
|
||
|
<DocComponent title="Vue Ripple Component" header="Ripple" description="Ripple directive adds ripple effect to the host element." :componentDocs="docs" :presetDoc="presetDoc" apiLink="/ripple/#api" ptLink="/ripple/#pt" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import AccessibilityDoc from '@/doc/ripple/AccessibilityDoc.vue';
|
||
|
import ConfigurationDoc from '@/doc/ripple/ConfigurationDoc.vue';
|
||
|
import DefaultDoc from '@/doc/ripple/DefaultDoc.vue';
|
||
|
import ImportDoc from '@/doc/ripple/ImportDoc.vue';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
docs: [
|
||
|
{
|
||
|
id: 'import',
|
||
|
label: 'Import',
|
||
|
component: ImportDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'configuration',
|
||
|
label: 'Configuration',
|
||
|
component: ConfigurationDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'default',
|
||
|
label: 'Default',
|
||
|
component: DefaultDoc
|
||
|
},
|
||
|
/*-{
|
||
|
id: 'custom',
|
||
|
label: 'Custom',
|
||
|
component: CustomDoc
|
||
|
},*/
|
||
|
{
|
||
|
id: 'accessibility',
|
||
|
label: 'Accessibility',
|
||
|
component: AccessibilityDoc
|
||
|
}
|
||
|
],
|
||
|
presetDoc: {
|
||
|
key: 'directives.ripple'
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|