add frontend frame and service logic
This commit is contained in:
31
frontend-frame/src/App.vue
Normal file
31
frontend-frame/src/App.vue
Normal file
@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
|
||||
<!-- SYSTEM-BUILDER-list-components-html -->
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { Component, Vue } from 'vue-property-decorator';
|
||||
import HelloWorld from './components/HelloWorld.vue';
|
||||
// SYSTEM-BUILDER-list-components-imports
|
||||
|
||||
@Component({
|
||||
components: {
|
||||
// SYSTEM-BUILDER-list-components-decorator
|
||||
},
|
||||
})
|
||||
export default class App extends Vue {}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#app {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: center;
|
||||
color: #2c3e50;
|
||||
margin-top: 60px;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user