blob: 3f2f232dcfabe5f67ee2722ce0c8be690d7953b3 [file] [log] [blame]
<template>
<div id="app">
<RkHeader :time="stateGlobal.duration"/>
<router-view class="wrapper"/>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { State } from 'vuex-class';
import { Component } from 'vue-property-decorator';
@Component({
})
export default class App extends Vue {
value = [];
local = {
hourTip: 'Select Hour', // tip of select hour
minuteTip: 'Select Minute', // tip of select minute
secondTip: 'Select Second', // tip of select second
};
@State('global') stateGlobal;
}
</script>
<style lang='scss'>
</style>