export default { template: `
`, data() { return { newAssignment: "", }; }, methods: { add() { document.getElementById("messageInput").value = ""; Swal.fire({ title: "Good job!", text: "Assignment Dibuat", icon: "success", }); this.$emit("add", this.newAssignment); }, }, };