-
Notifications
You must be signed in to change notification settings - Fork 17
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
Showing
5 changed files
with
58 additions
and
10 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<script setup> | ||
/** | ||
* A list of settings for the Batch tasks. | ||
*/ | ||
defineOptions({ name: 'SettingsViewBatchTasks' }) | ||
</script> | ||
<template> | ||
<div class="settings-view-batch-tasks my-4">settings-view-batch-tasks</div> | ||
</template> | ||
|
||
<style scoped lang="scss"></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 @@ | ||
<script setup> | ||
/** | ||
* A list of settings for the document processing. | ||
*/ | ||
defineOptions({ name: 'SettingsViewDocumentProcessing' }) | ||
</script> | ||
<template> | ||
<div class="settings-view-document-processing my-4">settings-view-document-processing</div> | ||
</template> | ||
|
||
<style scoped lang="scss"></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 @@ | ||
<script setup> | ||
/** | ||
* A list of extensions for the frontend. | ||
*/ | ||
defineOptions({ name: 'SettingsViewExtensions' }) | ||
</script> | ||
<template> | ||
<div class="settings-view-extensions my-4">settings-view-extensions</div> | ||
</template> | ||
|
||
<style scoped lang="scss"></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 @@ | ||
<script setup> | ||
/** | ||
* A list of plugins for the backend. | ||
*/ | ||
defineOptions({ name: 'SettingsViewPlugins' }) | ||
</script> | ||
<template> | ||
<div class="settings-view-plugins my-4">settings-view-plugins</div> | ||
</template> | ||
|
||
<style scoped lang="scss"></style> |