mirror of
https://github.com/helix-editor/helix
synced 2026-07-27 11:10:52 +02:00
27 lines
329 B
Vue
27 lines
329 B
Vue
<template>
|
|
<div class="container">
|
|
<ul>
|
|
<li>{{ item }}</li>
|
|
</ul>
|
|
<img src="x.png" />
|
|
<MyComponent
|
|
:prop="value"
|
|
@click="handler"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return { count: 0 };
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.container {
|
|
color: red;
|
|
}
|
|
</style>
|