orchard/resources/cider-ui-tests/views/components/hello-world.ejs

14 lines
No EOL
327 B
Text

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