Handling User Input
Event Handling
<template>
<Window title="Example" width="400" height="100" margined>
<Box padded>
<Text>Counter: {{ counter }}</Text>
<Button v-on:click="increment">Increment</Button>
</Box>
</Window>
</template>
<script>
export default {
data() {
return {
counter: 0
};
},
methods: {
increment() {
this.counter++;
}
}
}
</script>Input Binding
Last updated