Files
ClassContent/历届学生/front-end-team-10/项目练习/学生项目/韩孟雪/2023-3-22/混入.html
2024-09-27 02:06:13 +08:00

41 lines
692 B
HTML

<!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 class="app">
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14/dist/vue.js"></script>
<script>
//滚动加载
var loadMore = {
data() {
return {
page :0,
totalPage:0
}
},
methods:{
load() {
console.log("加载更多...");
}
}
}
new Vue({
el:'.app',
mixins:[loadMore],
data:{},
methods:{},
})
</script>
</html>