Skip to content

Commit a6a5058

Browse files
committed
Replace addButtonClicked by clickAddButton
1 parent 934d3ae commit a6a5058

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/AddButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default Vue.extend({
4444
},
4545
methods: {
4646
onClick(): void {
47-
this.$emit('addButtonClicked')
47+
this.$emit('clickAddButton')
4848
}
4949
}
5050
})

src/components/SimpleBottomSheet.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<v-col class="col message">{{ message }}</v-col>
1616
<v-col cols="2">
1717
<span class="add-button">
18-
<add-button @addButtonClicked="$emit('addButtonClicked')" />
18+
<add-button @clickAddButton="$emit('clickAddButton')" />
1919
</span>
2020
</v-col>
2121
</v-row>

src/pages/edit/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<simple-bottom-sheet
3030
message="2年B組の授業を追加・編集する"
3131
:expanded="isExpandedButton"
32-
@addButtonClicked="handler"
32+
@clickAddButton="handler"
3333
/>
3434
<editing-screen
3535
:value="editPageValue"

0 commit comments

Comments
 (0)