Renamed cider-ui-tests to cider-ui, starting skeleton for settings page
This commit is contained in:
parent
1ae4261849
commit
2df1a2d95f
69 changed files with 259 additions and 5 deletions
14
resources/cider-ui/views/components/hello-world.ejs
Normal file
14
resources/cider-ui/views/components/hello-world.ejs
Normal file
|
@ -0,0 +1,14 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue