This commit is contained in:
syuilo 2018-02-24 02:46:09 +09:00
parent 83f2e906bb
commit df8a2aea35
42 changed files with 823 additions and 511 deletions

View file

@ -0,0 +1,28 @@
<template>
<p>ver {{ v }} ( aoi)</p>
</template>
<script lang="ts">
import { version } from '../../../../config';
import define from '../../../../common/define-widget';
export default define({
name: 'version'
}).extend({
data() {
return {
v: version
};
}
});
</script>
<style lang="stylus" scoped>
p
display block
margin 0
padding 0 12px
text-align center
font-size 0.7em
color #aaa
</style>