mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-06-08 09:14:02 +00:00
20 lines
241 B
Vue
20 lines
241 B
Vue
|
<template>
|
||
|
<div id="app">test</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import {Component, Vue} from "vue-property-decorator";
|
||
|
|
||
|
@Component({
|
||
|
components: {},
|
||
|
})
|
||
|
export default class Index extends Vue {
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
#app {
|
||
|
|
||
|
}
|
||
|
</style>
|