feat: TextCypher

Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
This commit is contained in:
Corentin Thomasset 2020-05-31 23:33:19 +02:00 committed by Corentin THOMASSET
parent 805716910a
commit 85587beb0d
3 changed files with 101 additions and 0 deletions

View file

@ -6,6 +6,7 @@ import Hash from "./routes/tools/Hash";
import DateConverter from "./routes/tools/DateConverter";
import UrlEncoder from "./routes/tools/UrlEncoder";
import FileToBase64 from "./routes/tools/FileToBase64";
import TextCypher from "./routes/tools/TextCypher";
Vue.use(VueRouter)
@ -29,6 +30,10 @@ const toolsRoutes = [
{
path: '/file-to-base64',
component: FileToBase64
},
{
path: '/cypher',
component: TextCypher
}
]