generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jannik.lange
committed
May 23, 2024
1 parent
d298770
commit 60c60f9
Showing
8 changed files
with
296 additions
and
1,872 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
frontend/src/features/admin/features/the-contact-points/components/TipTapEditor.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<template> | ||
<div> | ||
<!-- Use the component in the right place of the template --> | ||
<tiptap-vuetify | ||
v-model="content" | ||
:extensions="extensions" | ||
/> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import {Vue, Component} from 'vue-property-decorator'; | ||
@Component({}) | ||
export default class TipTapEditor extends Vue { | ||
} | ||
</script> | ||
|
||
|
||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts"> | ||
import {Vue, Component} from 'vue-property-decorator'; | ||
@Component({}) | ||
export default class TestPage extends Vue { | ||
} | ||
</script> | ||
|
||
<template> | ||
<div> | ||
HALLLOOOO | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import test from "./TestPage.vue"; | ||
export const MAIN_ROUTE_PATH = "/test"; | ||
export const MAIN_ROUTE_NAME = "TestPage"; | ||
|
||
export const theTestRoutes = { | ||
name: MAIN_ROUTE_NAME, | ||
path: MAIN_ROUTE_PATH, | ||
component: test, | ||
meta: { | ||
icon: "mdi-test-tube" | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ declare module '*.vue' { | |
import Vue from 'vue'; | ||
export default Vue; | ||
} | ||
|
||
declare module 'tiptap-vuetify' |