20 lines
302 B
Vue
20 lines
302 B
Vue
<template lang='pug'>
|
|
v-container(fluid, fill-height)
|
|
v-layout(row wrap)
|
|
v-flex(xs12)
|
|
.headline.primary--text Developer Tools
|
|
.subheading.grey--text ¯\_(ツ)_/¯
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss'>
|
|
|
|
</style>
|