starting on oobe, moved components and pages to json
This commit is contained in:
parent
4d4c85dd1e
commit
04ff3717e2
6 changed files with 1010 additions and 888 deletions
33
src/renderer/views/pages/oobe.ejs
Normal file
33
src/renderer/views/pages/oobe.ejs
Normal file
|
@ -0,0 +1,33 @@
|
|||
<script type="text/x-template" id="cider-oobe">
|
||||
<div class="content-inner oobe">
|
||||
<div class="oobe-view">
|
||||
<div class="oobe-header">
|
||||
Welcome to Cider
|
||||
</div>
|
||||
<div class="oobe-body">
|
||||
body text
|
||||
</div>
|
||||
<div class="oobe-footer">
|
||||
<div class="btn-group">
|
||||
<div class="md-btn">Previous</div>
|
||||
<div class="md-btn">Next</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
<script>
|
||||
Vue.component('cider-oobe', {
|
||||
template: '#cider-oobe',
|
||||
data: function () {
|
||||
return {
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue