Skip to content

Instantly share code, notes, and snippets.

@newcat
newcat / App.vue
Created September 25, 2019 03:53
BaklavaJS Range Slider
<template>
<div id="app" style="width: 100vw; height: 100vh;">
<baklava-editor :plugin="viewPlugin"></baklava-editor>
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import { Editor, NodeBuilder } from "@baklavajs/core";
import { ViewPlugin } from "@baklavajs/plugin-renderer-vue";
@newcat
newcat / erm_example.html
Created May 21, 2020 14:19
BaklavaJS ERM Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BaklavaJS Vanilla Example</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/baklavajs/dist/styles.css">
</head>
<body>