mirror of
https://github.com/youzan/vant.git
synced 2025-10-17 08:37:23 +00:00
chore: prettier all codes (#10240)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { defineComponent } from 'vue'
|
||||
import { defineComponent } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'App',
|
||||
@@ -7,6 +7,6 @@ export default defineComponent({
|
||||
<>
|
||||
<h1>App</h1>
|
||||
</>
|
||||
)
|
||||
}
|
||||
})
|
||||
);
|
||||
},
|
||||
});
|
||||
|
@@ -5,15 +5,15 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
const a = 1
|
||||
a = 1
|
||||
const a = 1;
|
||||
a = 1;
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
arr: [1, 2, 3]
|
||||
}
|
||||
}
|
||||
}
|
||||
arr: [1, 2, 3],
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
|
@@ -1,2 +1,2 @@
|
||||
const a = b + 1
|
||||
export default a
|
||||
const a = b + 1;
|
||||
export default a;
|
||||
|
Reference in New Issue
Block a user