mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-20 08:58:41 +00:00
options移植
This commit is contained in:
parent
fb028828f7
commit
2ad5bf6e60
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 194 KiB |
@ -1,5 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="options">options</div>
|
<div class="options">
|
||||||
|
<div class="text">哈哈,让你发现了</div>
|
||||||
|
<div class="text">不过这里什么都没有</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, onMounted, ref, provide, nextTick } from "vue";
|
import { defineComponent, onMounted, ref, provide, nextTick } from "vue";
|
||||||
@ -13,8 +16,16 @@ export default defineComponent({
|
|||||||
</script>
|
</script>
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
.options {
|
.options {
|
||||||
widows: 10px;
|
width: 100%;
|
||||||
height: 10px;
|
height: 100%;
|
||||||
background-color: rebeccapurple;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.text {
|
||||||
|
user-select: none;
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,18 +0,0 @@
|
|||||||
.layout {
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
&.vertical {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.horizontal {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.flex1 {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
import Vue from "vue";
|
|
||||||
import App from "./index.vue";
|
|
||||||
import "element-ui/lib/theme-chalk/index.css"
|
|
||||||
import ElementUI from "element-ui";
|
|
||||||
|
|
||||||
Vue.config.productionTip = false;
|
|
||||||
Vue.use(ElementUI, {size: "mini"});
|
|
||||||
new Vue({
|
|
||||||
render: (h) => h(App),
|
|
||||||
}).$mount("#app");
|
|
@ -1,38 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div id="options">
|
|
||||||
<div class="text">
|
|
||||||
哈哈,让你发现了
|
|
||||||
</div>
|
|
||||||
<div class="text">
|
|
||||||
不过这里什么都没有
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import {Component, Vue} from "vue-property-decorator";
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: {},
|
|
||||||
})
|
|
||||||
export default class Index extends Vue {
|
|
||||||
name: string = "index";
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped lang="less">
|
|
||||||
#options {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
.text {
|
|
||||||
user-select: none;
|
|
||||||
font-size: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
</style>
|
|
Loading…
x
Reference in New Issue
Block a user