[READ-ONLY] Mirror of https://github.com/danielroe/vuejslive. A demo of integrating Vue, Vite and Nitro for Vue.js Live London 2023.
vuejslive.vercel.app
1<script>
2import '@picocss/pico'
3import { ref } from 'vue'
4
5export default {
6 setup () {
7 return {
8 message: ref('So nice to be here!')
9 }
10 }
11}
12</script>
13
14<template>
15 <div class="container">
16 <h1>
17 👋 Hi Vue.js London!
18 </h1>
19 <p>
20 {{ message }}
21 </p>
22 <button @click="message = 'Let me know what you think!'">Click me!</button>
23 </div>
24</template>
25