JSFiddle - React, Tailwind, and code Playground

by rich_harris

HTML

<main/>

JavaScript

var r = new Ractive({
    el: 'main',
    template: '{{ items.0 }}',
    data: { items: [] }
});

// this works
r.splice('items', 0, 0, 'foo');

// this does not
r.splice('items', 0, 0, 'bar');