feat: component base

This commit is contained in:
Corentin Thomasset 2021-02-13 19:55:45 +01:00
parent 02dafd6a2f
commit 6e0c369398
No known key found for this signature in database
GPG key ID: DBD997E935996158
17 changed files with 1482 additions and 1006 deletions

10
types/ToolConfig.ts Normal file
View file

@ -0,0 +1,10 @@
interface ToolConfig {
title: string;
description: string;
icon: string;
keywords: string[];
}
type ToolConfigMethod = () => ToolConfig;
export {ToolConfig, ToolConfigMethod}

6
types/custom.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
declare module '*.svg?inline' {
import { Component } from 'vue'
const content: Component
export default content
}