1 2 3 4 5 6 7 8 9 10 11
<template> <div> {{ count }} </div> </template> <script lang="js" setup> const count = 1; </script> <style></style>