feat: 增加ipynb渲染

This commit is contained in:
camera-2018
2023-04-24 11:26:28 +08:00
parent 09cb1716d1
commit 43a6e8d116
27 changed files with 11696 additions and 40 deletions

18
notebook.md Normal file
View File

@@ -0,0 +1,18 @@
<div class="home">
<RenderJupyterNotebook :notebook="notebook" />
</div>
<script>
import RenderJupyterNotebook from "./components/RenderJupyterNotebook.vue";
import example from "./特征工程.json";
export default {
name: "HomeView",
components: { RenderJupyterNotebook },
data() {
return {
notebook: example,
};
},
};
</script>