mirror of https://github.com/vuejs/vue.git
24 lines
704 B
HTML
24 lines
704 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Simple Example</title>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
.red { color: red; }
|
|
</style>
|
|
<script src="../dist/seed.js"></script>
|
|
</head>
|
|
<body sd-controller="hello">
|
|
<input type="checkbox" sd-checked="checked">
|
|
<span sd-text="hello | uppercase" sd-class="red:checked"></span>
|
|
<script>
|
|
Seed.controller('hello', function (scope) {
|
|
scope.hello = {get:function () {
|
|
return scope.checked ? 'red!!!' : 'hello seed'
|
|
}}
|
|
})
|
|
|
|
Seed.bootstrap()
|
|
</script>
|
|
</body>
|
|
</html> |