feat(App): list to subject emits
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
</v-app-bar>
|
</v-app-bar>
|
||||||
|
|
||||||
<v-content>
|
<v-content>
|
||||||
<SpeechlessSubject/>
|
<SpeechlessSubject @inputData="updateSubjects"/>
|
||||||
<SpinningWheel/>
|
<SpinningWheel/>
|
||||||
</v-content>
|
</v-content>
|
||||||
</v-app>
|
</v-app>
|
||||||
@@ -21,8 +21,13 @@ export default {
|
|||||||
source: String,
|
source: String,
|
||||||
},
|
},
|
||||||
data: () => ({
|
data: () => ({
|
||||||
drawer: null,
|
subjects: [],
|
||||||
}),
|
}),
|
||||||
|
methods: {
|
||||||
|
updateSubjects(subjects) {
|
||||||
|
this.subjects=subjects;
|
||||||
|
}
|
||||||
|
}
|
||||||
components: {
|
components: {
|
||||||
SpeechlessSubject,
|
SpeechlessSubject,
|
||||||
SpinningWheel
|
SpinningWheel
|
||||||
|
|||||||
Reference in New Issue
Block a user