A Vue 3 component library for Lakekeeper console applications, built with Vuetify.
npm install @lakekeeper/console-components
import { createApp } from 'vue';
import ConsoleComponentsPlugin from '@lakekeeper/console-components';
import '@lakekeeper/console-components/style.css';
const app = createApp(App);
app.use(ConsoleComponentsPlugin);
import { AppFooter } from '@lakekeeper/console-components';
import '@lakekeeper/console-components/style.css';
A footer component with Lakekeeper branding and copyright information.
<template>
<AppFooter />
</template>
- Vue 3.x
- Vuetify 3.x
# Install dependencies
npm install
# Build the library
npm run build
# Run in development mode
npm run dev
MIT