mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-06 03:58:05 +08:00
22 lines
488 B
Smarty
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"/>
|
|
)
|
|
}
|