+ vscode night owl theme
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user