35 lines
517 B
Vue
35 lines
517 B
Vue
<template>
|
|
<div id="app">
|
|
<p
|
|
id="build-info"
|
|
v-text="version"
|
|
/>
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import version from '../version';
|
|
|
|
export default {
|
|
data () {
|
|
return { version: `build: ${version}` };
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
#build-info {
|
|
font-size: 10pt;
|
|
text-align: left;
|
|
}
|
|
</style>
|