mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-04 04:57:40 +08:00
30 lines
608 B
HTML
30 lines
608 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Vue.js markdown editor example</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="../../dist/vue.js"></script>
|
|
<script src="marked.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="editor">
|
|
<textarea v-model="input" debounce="300"></textarea>
|
|
<div v-html="input | marked"></div>
|
|
</div>
|
|
|
|
<script>
|
|
new Vue({
|
|
el: '#editor',
|
|
data: {
|
|
input: '# hello'
|
|
},
|
|
filters: {
|
|
marked: marked
|
|
}
|
|
})
|
|
</script>
|
|
|
|
</body>
|
|
</html> |