Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
editable.js
colors.js
<script>
import {colors} from './colors.js'
import {editable} from "./editable.js"
</script>
<div use:editable={{colors}}>
<h1>
Svelte Text Editor Usage
</h1>
Click 🖱️ on me to <i>edit this</i> <b>text</b> by <a href='https://twitter.com/DougAnderson444' target='_blank'>@DougAnderson444</a>
<input type="text" style:width="20em" placeholder='Clicking an input does not affect editing'>
</div>

<style>
input {
margin-top: 2em;
}
</style>
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */