JSFiddle - React, Tailwind, and code Playground

by skirtle

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
  <div
    :style="{
      backgroundImage: '-webkit-image-set(url(https://freesvg.org/img/Something-I-ate.png) 1x)'
    }"
  ></div>
</div>

CSS

div {
  height: 300px;
}

JavaScript

new Vue({
  el: '#app'
})