18 lines
239 B
Vue
Raw Normal View History

2019-03-15 10:08:39 +08:00
<template lang="pug">
div options
</template>
<script>
export default {
data: () => ({
}),
computed: { },
created () { },
mounted () { },
methods: { }
}
</script>
<style>
div {
color: blue
}
</style>