2021-03-19 00:27:23 +08:00

22 lines
488 B
Smarty

import { useEffect } from 'react';
import Valine from 'valine';
export function ValineComment({ location }) {
const { pathname } = location;
useEffect(() => {
import('valine').then(Valine => {
console.log(Valine)
new Valine.default({
el: '{{{ el }}}',
appId: '{{{ appId }}}',
appKey: '{{{ appKey }}}'
})
})
}, [pathname])
return (
<div id="vcomments"/>
)
}