0.6.1 • Published 2 years ago

sandpack-vue v0.6.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Sandpack Vue

Vue components for Sandpack.

Note: this package is in heavy development. Expect breaking changes.

Example

<template>
	<h1>Basic</h1>
	<Sandbox class="sandbox" :info="info" />
</template>

<script setup lang="ts">
import { Sandbox } from 'sandpack-vue';
import 'sandpack-vue/style.css';

const info = {
	files: {
		'/index.html': {
			code: `<!DOCTYPE html>
			<html>
			<body>
			<h1>Hello Sandpack!</h1>
			<div id="app"></div>
			<script src="src/index.ts" />
			</body>
			</html>`,
		},
		'/index.js': {
			code: `import { v4 as uuidv4 } from 'uuid';
			document.getElementById("app").innerHTML = \`
			<div>
			$\{uuidv4()}
			</div>\``,
		},
	},
	entry: '/index.js',
	dependencies: {
		uuid: 'latest',
	},
};
0.6.1

2 years ago

0.6.0

2 years ago

0.5.8

2 years ago

0.5.7

2 years ago

0.5.6

2 years ago

0.5.5

2 years ago

0.5.4

2 years ago

0.5.3

2 years ago

0.5.2

2 years ago

0.5.1

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago