mynote/vim/templates/=template=.vue
2019-05-31 00:28:41 +08:00

30 lines
445 B
Vue

<!--
Copyright © light <light_jiang2015@outlook.com>
2019-05-12-23:48
-->
<style scoped></style>
<template>
<div></div>
</template>
<script>
export default {
components: {},
data() {
return {}
},
computed: {},
watch: {},
props: {},
methods: {},
beforeCreate() {},
created() {},
mounted() {},
beforeDestroy() {},
destroyed() {},
beforeUpdate() {},
updated() {},
activated() {},
deactivated() {}
}
</script>