mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
15 lines
262 B
HTML
15 lines
262 B
HTML
<button class='del' on:click='del()'>delete</button>
|
|
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
del() {
|
|
fetch(`/api/delete/42`, { method: 'DELETE' })
|
|
.then(r => r.json())
|
|
.then(data => {
|
|
window.deleted = data;
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script> |