Mon 21 Jul 22:43:21 CEST 2025

This commit is contained in:
sbosse 2025-07-21 23:37:08 +02:00
parent 0c597c154a
commit c0ab02d9f6

52
js/ui/botui/test.html Normal file
View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="build/botui.min.css">
<link rel="stylesheet" href="build/botui-theme-default.css">
</head>
<body>
<div class="botui-app-container" id="hello-world">
<bot-ui></bot-ui>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="build/botui.js"></script>
<script>
var botui = new BotUI('hello-world');
botui.message.add({
loading: true
}).then(function (index) {
setTimeout(function () {
botui.message.update(index, {
content: 'Hello World from bot!',
loading: false
}).then(function () {
botui.message.add({
delay: 2000,
loading: true,
content: 'Delayed Hello World'
});
});
}, 5000);
});
botui.message.add({
human: true,
content: 'Hello World from human!'
}).then(function () {
botui.action.text({
action: {
button: {
icon: 'check',
label: 'Submit'
}
}
});
});
</script>
</body>
</html>