orchard/src/renderer/views/components/hello-world.ejs
vapormusic af78d7f5fe okie
2022-08-01 22:43:06 +07:00

14 lines
No EOL
337 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>