mirror of https://github.com/vuejs/core.git
7 lines
97 B
Vue
7 lines
97 B
Vue
|
<script setup>
|
||
|
const msg = 'vdom comp'
|
||
|
</script>
|
||
|
<template>
|
||
|
<div>{{ msg }}</div>
|
||
|
</template>
|