mirror of https://github.com/vuejs/core.git
13 lines
268 B
Vue
13 lines
268 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { FunctionDirective } from '@vue/vapor'
|
||
|
|
|
||
|
|
const vDirective: FunctionDirective<HTMLDivElement, undefined> = node => {
|
||
|
|
node.textContent = 'hello world'
|
||
|
|
node.style.color = 'red'
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div v-directive />
|
||
|
|
</template>
|