提交 2395667a 编写于 作者: J Jeff Fox

devtools

上级 fcbfd562
<!DOCTYPE html>
<html lang="en">
<head>
<title>Vue App</title>
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="app">
<foo></foo>
</div>
<script>
const App = {
data() {
return {};
},
};
const app = Vue.createApp(App);
app.component("foo", {
data() {
return {
message: "I am foo.",
};
},
name: "foo",
template: `<p>{{message}}</p>`,
});
app.mount("#app");
</script>
</body>
</html>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册