starting on oobe, moved components and pages to json

This commit is contained in:
booploops 2022-06-01 00:44:18 -07:00
parent 4d4c85dd1e
commit 04ff3717e2
6 changed files with 1010 additions and 888 deletions

View 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>