mirror of
https://github.com/folke/snacks.nvim
synced 2025-12-23 08:47:57 +00:00
17 lines
289 B
Vue
17 lines
289 B
Vue
<script setup>
|
|
import { ref } from "vue";
|
|
const greeting = ref("Hello World!");
|
|
</script>
|
|
|
|
<template>
|
|
<p class="greeting">{{ greeting }}</p>
|
|
<img src="test.png" alt="test" />
|
|
</template>
|
|
|
|
<style>
|
|
.greeting {
|
|
color: red;
|
|
font-weight: bold;
|
|
background: url("test.png");
|
|
}
|
|
</style>
|