-
-
Notifications
You must be signed in to change notification settings - Fork 51
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
73 additions
and
16 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
20 changes: 20 additions & 0 deletions
20
launcher/src/components/UI/control-page/components/widgets/SetupServices.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,20 @@ | ||
<template> | ||
<div class="total-setup-services-parent MachineNameParent bg-[#151618] rounded-md w-full h-full relative flex justify-start items-center"> | ||
<span class="w-4/5 h-full text-teal-700 text-sm font-semibold flex justify-center items-center uppercase">{{ | ||
t("setupServicesWidget.text") | ||
}}</span> | ||
<span class="w-1/5 h-full text-gray-100 font-semibold flex justify-center items-center uppercase">{{ | ||
controlStore.setupServices | ||
}}</span> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
import { useControlStore } from "@/store/theControl"; | ||
import i18n from "@/includes/i18n"; | ||
const controlStore = useControlStore(); | ||
const t = i18n.global.t; | ||
</script> |
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
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