编写需要生成代码片段的代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<template id="app">
<div>{
{message}}</div>
</template>
<script src="./js/vue.js"></script>
<script>
const app = {
template: '#app',
data: function() {
return {
message: "Hello World"
}
},
methods: {
}
};
Vue.createApp(app).mount('#app');
</script>
</body>
</html>
将需要生成代码片段的代码复制到如下链接