orchard/src/renderer/views/components/hello-world.ejs
2022-08-08 09:40:37 +07:00

14 lines
301 B
Text

<script type="text/x-template" id="hello-world">
<button @click="sayHello()">Hello world!</button>
</script>
<script>
var hw = Vue.component('hello-world', {
template: '#hello-world',
methods: {
sayHello: function() {
alert('Hello world!');
}
}
});
</script>