+ vscode night owl theme

This commit is contained in:
committer
2024-05-15 07:15:59 -05:00
parent e2c14487aa
commit d18120752c
51 changed files with 19760 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<template>
<div>
<AppSelect />
<button
@click="getNewIntent"
:class="{ disabled: uiState === 'listening' }"
></button>
</div>
</template>
<script>
export default {
props: {
aborted: {
type: Boolean,
default: false,
required: true,
},
},
computed: {
uiState() {
return this.$store.state.uiState;
},
},
methods: {
getNewIntent() {
this.$store.dispatch("getSpeech");
this.$emit("isaborted", false);
},
},
};
</script>
<style scoped>
button {
border-radius: 1000px;
background: teal;
margin-top: 10px;
transition: 0.3s all ease-out;
}
button.disabled {
background: #ccc;
cursor: none;
}
</style>