Vuex商店是保留活动下载队列和数据流列表的好地方吗?
webtorrent可以做到的一切。
var WebTorrent = require('webtorrent')
var client = new WebTorrent()
var magnetURI = 'magnet: ...'
client.add(magnetURI, { path: '/path/to/folder' }, function (torrent) {
torrent.on('done', function () {
console.log('torrent download finished')
})
})
我如何使用VueJS构建该架构/模式?任何见解,apreciated
谢谢!
答案 0 :(得分:0)
我会回答因为我找到了解决方案。然后,如果社区希望删除它,那就可以了。
基本上我所做的就是等待安装一个Component。
在AComponent.Vue内部
<template>
<keep-alive>
<!-- HTML binding webtorrent client data -->
</keep-alive>
</template>
<script>
export default {
mounted() {
var client = WebTorrent()
}
}
</script>
为什么这会实现我想要的? :