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