BotSharp/BotSharp.UI/src/app.vue

23 lines
311 B
Vue
Raw Normal View History

2018-08-01 12:17:13 +00:00
<style scoped>
@import 'styles/common.css';
</style>
<template>
<router-view></router-view>
</template>
<script>
export default {
data () {
return {}
},
mounted () {
},
beforeDestroy () {
},
methods: {
}
}
</script>