CoolestKid
Продвинутый пользователь
- Регистрация
- 01.03.2023
- Сообщения
- 99
- Реакции
- 9
In my Site there is this Vue Code.. Which it work for Search Form.. But When I use it.. It make Telegram Bot to not work... Does anyone know why it cause Conflict with Telegram bot
JavaScript:
var app = new Vue({
el: "#app",
data: {
keyword: "",
},
methods: {
search: function(e) {
var t;
if ("" !== this.keyword) {
t = this.keyword
.replace(/\W-/g, "")
.replace(/['"]+/g, "")
.split(" ")
.join("-")
.toLowerCase();
location.href = "/search/" + t;
}
e.preventDefault();
},
},
});