JSFiddle - React, Tailwind, and code Playground

by skirtle

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<div id="app"></div>

JavaScript

const { createApp } = Vue

console.log('here')

const app = createApp({
    template: `
        <h1>Hello world</h1>
    `,
    data: () => ({
        testVariable: 'Value'
    }),
    methods: {}
}).mount('#app')

console.log('after', app.$el)