mirror of
https://github.com/windwp/nvim-ts-autotag.git
synced 2025-01-01 12:49:15 -06:00
26 lines
199 B
Vue
26 lines
199 B
Vue
<template>
|
|
|
|
<div> </div>
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Sample',
|
|
data() {
|
|
|
|
},
|
|
props: {
|
|
},
|
|
mounted() {
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.sample{
|
|
width:100px;
|
|
}
|
|
</style>
|