diff options
author | 2023-08-26 16:43:47 +0200 | |
---|---|---|
committer | 2023-08-26 16:43:47 +0200 | |
commit | 81bfe57cb85690f4153683754ffb09f35a816dac (patch) | |
tree | 15360fc716336d75319123aeb469d9a5aac4a4d4 /src/tools/text-diff/text-diff.vue | |
parent | a9cd91ca9cc31dd47973b2f87b5e1912c8cb75fd (diff) | |
download | it-tools-81bfe57cb85690f4153683754ffb09f35a816dac.tar.gz it-tools-81bfe57cb85690f4153683754ffb09f35a816dac.tar.zst it-tools-81bfe57cb85690f4153683754ffb09f35a816dac.zip |
feat(new tool): text diff and comparator (#588)
* feat(new tool): text diff and comparator
* chore(ci): increased memory in CI
Diffstat (limited to 'src/tools/text-diff/text-diff.vue')
-rw-r--r-- | src/tools/text-diff/text-diff.vue | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/text-diff/text-diff.vue b/src/tools/text-diff/text-diff.vue new file mode 100644 index 0000000..990f05b --- /dev/null +++ b/src/tools/text-diff/text-diff.vue @@ -0,0 +1,5 @@ +<template> + <c-card w-full important:flex-1 important:pa-0> + <c-diff-editor /> + </c-card> +</template> |