将 tawk.to 与 Nuxt/Vue 应用程序一起使用
Using tawk.to with Nuxt/Vue Application
有人知道如何在 Nuxt 应用程序中使用 tawk.to 吗?
我使用以下代码在我的插件文件夹中创建了一个文件 "tawk.js":
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date()
(function () {
var s1 = document.createElement('script')
s0 = document.getElementsByTagName('script')[0]
s1.async = true
s1.src = 'https://embed.tawk.to/[my_ID_HERE]/default'
s1.charset = 'UTF-8'
s1.setAttribute('crossorigin', '*')
s0.parentNode.insertBefore(s1, s0)
})()
我也把它放在 nuxt.config.js 上:
plugins: [
{ src: '~/plugins/tawk.js', ssr: false }
]
没用。它确实显示了一些编译错误:
1:1 error Split initialized 'var' declarations into multiple statements
1:5 error Identifier 'Tawk_API' is not in camel case
1:16 error Identifier 'Tawk_API' is not in camel case
1:16 error 'Tawk_API' was used before it was defined
2:3 error Identifier 'Tawk_LoadStart' is not in camel case
2:3 error 'Tawk_LoadStart' is assigned a value but never used
2:29 error Unexpected space between function name and paren
3:3 error Unexpected newline between function and ( of function call
5:5 error 's0' is not defined
10:5 error 's0' is not defined
10:36 error 's0' is not defined
您可以尝试为 tawk 使用 vue 包装器。 vue-tawk
import Tawk from 'vue-tawk'
Vue.use(Tawk, {
tawkSrc: 'https://embed.tawk.to/5d5528ee2xxxxxxxxxxxx/default'
})
在nuxt项目中集成tawk.to
的最佳方式是
转到 nuxt.config.js
并将其添加为 script
标签。
// nuxt.config.js
export default {
// ...
head: {
// ...
script: [
// ...
{
hid: 'tawk.to',
src:
'https://embed.tawk.to/5edf699a9e5f694422903412/default',
defer: true
}
]
},
},
有人知道如何在 Nuxt 应用程序中使用 tawk.to 吗?
我使用以下代码在我的插件文件夹中创建了一个文件 "tawk.js":
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date()
(function () {
var s1 = document.createElement('script')
s0 = document.getElementsByTagName('script')[0]
s1.async = true
s1.src = 'https://embed.tawk.to/[my_ID_HERE]/default'
s1.charset = 'UTF-8'
s1.setAttribute('crossorigin', '*')
s0.parentNode.insertBefore(s1, s0)
})()
我也把它放在 nuxt.config.js 上:
plugins: [
{ src: '~/plugins/tawk.js', ssr: false }
]
没用。它确实显示了一些编译错误:
1:1 error Split initialized 'var' declarations into multiple statements
1:5 error Identifier 'Tawk_API' is not in camel case
1:16 error Identifier 'Tawk_API' is not in camel case
1:16 error 'Tawk_API' was used before it was defined
2:3 error Identifier 'Tawk_LoadStart' is not in camel case
2:3 error 'Tawk_LoadStart' is assigned a value but never used
2:29 error Unexpected space between function name and paren
3:3 error Unexpected newline between function and ( of function call
5:5 error 's0' is not defined
10:5 error 's0' is not defined
10:36 error 's0' is not defined
您可以尝试为 tawk 使用 vue 包装器。 vue-tawk
import Tawk from 'vue-tawk'
Vue.use(Tawk, {
tawkSrc: 'https://embed.tawk.to/5d5528ee2xxxxxxxxxxxx/default'
})
在nuxt项目中集成tawk.to
的最佳方式是
转到 nuxt.config.js
并将其添加为 script
标签。
// nuxt.config.js
export default {
// ...
head: {
// ...
script: [
// ...
{
hid: 'tawk.to',
src:
'https://embed.tawk.to/5edf699a9e5f694422903412/default',
defer: true
}
]
},
},