去掉babel.js后,本例程就能在Vista的IE9下运行。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Learn Vue2</title>
<script src="vue.js"></script>
</head>
<body>
<div id="app">
{{ message }}
</div>
<script>
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
</script>
</body>
</html>