mirror of
https://github.com/windwp/nvim-ts-autotag.git
synced 2025-01-06 05:59:21 -06:00
26 lines
212 B
Vue
26 lines
212 B
Vue
|
<template>
|
||
|
<div class="aaa">
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
name: 'Sample',
|
||
|
data() {
|
||
|
|
||
|
},
|
||
|
props: {
|
||
|
},
|
||
|
mounted() {
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.sample{
|
||
|
width:`100px`;
|
||
|
}
|
||
|
</style>
|