**在index中 下添加v-console即可**
<div id="app"></div>
<script>
var vConsole = new VConsole({
defaultPlugins: ["network"],
disableLogScrolling: true,
});
vConsole.pluginList.network.scrollToBottom = function () {
if (!this.vConsole.option.disableLogScrolling) {
var $box = vConsole.$.one(".vc-content");
$box.scrollTop = $box.scrollHeight - $box.offsetHeight;
}
};
</script>