background.vue
483 Bytes
<template lang="html">
<div class="background"></div>
</template>
<script>
import Particle from 'zhihu-particle'
export default {
name: 'layout',
mounted () {
new Particle(this.$el, { atomColor: '#F9FAFC', interactive: true, density: 'low' })
$('body').css('background', '#1F2D3D')
}
}
</script>
<style scoped>
.background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
overflow: hidden;
}
</style>