mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
feat: add print button
This commit is contained in:
parent
916a6fb913
commit
95722a6469
3 changed files with 20 additions and 4 deletions
1
components.d.ts
vendored
1
components.d.ts
vendored
|
@ -128,6 +128,7 @@ declare module '@vue/runtime-core' {
|
||||||
MetaTagGenerator: typeof import('./src/tools/meta-tag-generator/meta-tag-generator.vue')['default']
|
MetaTagGenerator: typeof import('./src/tools/meta-tag-generator/meta-tag-generator.vue')['default']
|
||||||
MimeTypes: typeof import('./src/tools/mime-types/mime-types.vue')['default']
|
MimeTypes: typeof import('./src/tools/mime-types/mime-types.vue')['default']
|
||||||
NavbarButtons: typeof import('./src/components/NavbarButtons.vue')['default']
|
NavbarButtons: typeof import('./src/components/NavbarButtons.vue')['default']
|
||||||
|
NButton: typeof import('naive-ui')['NButton']
|
||||||
NCode: typeof import('naive-ui')['NCode']
|
NCode: typeof import('naive-ui')['NCode']
|
||||||
NCollapseTransition: typeof import('naive-ui')['NCollapseTransition']
|
NCollapseTransition: typeof import('naive-ui')['NCollapseTransition']
|
||||||
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
|
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
|
||||||
|
|
|
@ -2,11 +2,11 @@ import { Markdown } from '@vicons/tabler';
|
||||||
import { defineTool } from '../tool';
|
import { defineTool } from '../tool';
|
||||||
|
|
||||||
export const tool = defineTool({
|
export const tool = defineTool({
|
||||||
name: 'Markdown to html',
|
name: 'Markdown to Html',
|
||||||
path: '/markdown-to-html',
|
path: '/markdown-to-html',
|
||||||
description: '',
|
description: 'Convert Markdown to Html and allow to print (as PDF)',
|
||||||
keywords: ['markdown', 'html', 'converter'],
|
keywords: ['markdown', 'html', 'converter', 'pdf'],
|
||||||
component: () => import('./markdown-to-html.vue'),
|
component: () => import('./markdown-to-html.vue'),
|
||||||
icon: Markdown,
|
icon: Markdown,
|
||||||
createdAt: new Date('2024-02-25'),
|
createdAt: new Date('2024-08-15'),
|
||||||
});
|
});
|
||||||
|
|
|
@ -7,6 +7,15 @@ const outputHtml = computed(() => {
|
||||||
const md = markdownit();
|
const md = markdownit();
|
||||||
return md.render(inputMarkdown.value);
|
return md.render(inputMarkdown.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function printHtml() {
|
||||||
|
const w = window.open();
|
||||||
|
if (w === null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
w.document.body.innerHTML = outputHtml.value;
|
||||||
|
w.print();
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -25,5 +34,11 @@ const outputHtml = computed(() => {
|
||||||
<n-form-item label="Output HTML:">
|
<n-form-item label="Output HTML:">
|
||||||
<TextareaCopyable :value="outputHtml" :word-wrap="true" language="html" />
|
<TextareaCopyable :value="outputHtml" :word-wrap="true" language="html" />
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
|
|
||||||
|
<div flex justify-center>
|
||||||
|
<n-button @click="printHtml">
|
||||||
|
Print (ie, use a PDF Printer to get a PDF file)
|
||||||
|
</n-button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue