mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-25 03:18:41 +00:00
20 lines
401 B
Vue
20 lines
401 B
Vue
|
<template>
|
||
|
<div class="options">options</div>
|
||
|
</template>
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, onMounted, ref, provide, nextTick } from "vue";
|
||
|
export default defineComponent({
|
||
|
name: "options",
|
||
|
components: {},
|
||
|
setup(props, ctx) {
|
||
|
return {};
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
<style scoped lang="less">
|
||
|
.options {
|
||
|
widows: 10px;
|
||
|
height: 10px;
|
||
|
background-color: rebeccapurple;
|
||
|
}
|
||
|
</style>
|