schlechtenburg/packages/italic/lib/index.ts

12 lines
280 B
TypeScript
Raw Normal View History

2022-12-29 23:33:04 +00:00
import { defineAsyncComponent } from 'vue';
import { IFormattingTool } from '@schlechtenburg/core';
2022-12-29 23:33:04 +00:00
export const name = '@schechtenburg/italic';
2022-12-29 23:33:04 +00:00
export default {
name,
title: 'Italic',
icon: 'I',
edit: defineAsyncComponent(() => import('./edit')),
} as IFormattingTool;