Implemented NativeScript-Vue CLI Plugin
This commit is contained in:
parent
1ffadb042f
commit
97cc5d2b78
72 changed files with 3554 additions and 636 deletions
38
src/App.native.vue
Normal file
38
src/App.native.vue
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<template>
|
||||
<Page>
|
||||
<ActionBar title="OpenFlexure Native Demo"/>
|
||||
<GridLayout rows="auto, auto">
|
||||
<Label class="message" text="No content currently ported" row="0" horizontalAlignment="center"/>
|
||||
</GridLayout>
|
||||
</Page>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// Import axios for HTTP requests
|
||||
import axios from 'axios'
|
||||
|
||||
// Export main app
|
||||
export default {
|
||||
name: 'app',
|
||||
|
||||
|
||||
data: function () {
|
||||
return {}
|
||||
},
|
||||
|
||||
created: function () {
|
||||
},
|
||||
|
||||
beforeDestroy: function () {
|
||||
},
|
||||
|
||||
methods: {
|
||||
},
|
||||
|
||||
computed: {
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue