mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 15:56:15 -04:00
27 lines
585 B
Vue
27 lines
585 B
Vue
<tool>
|
|
title: 'Git memo old'
|
|
description: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Delectus distinctio dolor dolorum eaque eligendi, facilis impedit laboriosam odit placeat.'
|
|
icon: 'mdi-git'
|
|
keywords: ['git', 'memo', 'cheat', 'sheet']
|
|
path: '/git-memo-test'
|
|
</tool>
|
|
|
|
<template lang="md">
|
|
<ToolWrapper :config="$toolConfig">
|
|
|
|
## test
|
|
|
|
```js
|
|
yolo
|
|
```
|
|
</ToolWrapper>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {Component} from 'nuxt-property-decorator'
|
|
import Tool from '~/components/Tool.vue'
|
|
|
|
@Component
|
|
export default class GitMemo extends Tool {
|
|
}
|
|
</script>
|