19 lines
278 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: {}
}
2019-03-15 10:08:39 +08:00
</script>
<style>
div {
color: blue
}
2019-03-15 10:08:39 +08:00
</style>