mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 16:38:41 +00:00
18 lines
239 B
Vue
18 lines
239 B
Vue
|
<template lang="pug">
|
||
|
div options
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
data: () => ({
|
||
|
}),
|
||
|
computed: { },
|
||
|
created () { },
|
||
|
mounted () { },
|
||
|
methods: { }
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
div {
|
||
|
color: blue
|
||
|
}
|
||
|
</style>
|