26 lines
199 B
Vue
Raw Normal View History

2021-03-08 19:19:01 +07:00
<template>
2021-03-10 11:48:00 +07:00
<div> </div>
2021-03-08 19:19:01 +07:00
</template>
<script>
export default {
name: 'Sample',
data() {
},
props: {
},
mounted() {
}
};
</script>
<style scoped>
.sample{
2021-03-09 09:26:36 +07:00
width:100px;
2021-03-08 19:19:01 +07:00
}
</style>