umutcankarce Yapabilirsiniz (ama <script setup> kullanamazsınız.)
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue.js</title>
<script src="https://unpkg.com/vue@3.2.47/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<p>{{ message }}</p>
<button @click="show">Mesajı Göster</button>
</div>
<script>
const { ref } = Vue;
const app = Vue.createApp({
setup() {
const message = ref('');
const show = () => {
message.value = 'Merhaba inline Vue!';
};
return {
message,
show
};
}
}).mount('#app')
</script>
</body>
</html>