vue2/examples/expression.html

24 lines
602 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8">
</head>
<body>
<div id="demo">
<p sd-text="one + ' ' + two + '!'"></p>
<input sd-model="one"> <input sd-model="two">
</div>
<script src="../dist/seed.js"></script>
<script>
Seed.config({ debug: true })
var demo = new Seed({
el: '#demo',
scope: {
one: 'Hello',
two: 'World'
}
})
</script>
</body>
</html>