Files
vue-audio-recorder/demo/index.html
Gennady Grishkovtsov 95a9700d50 Add existing code
2018-07-26 11:06:48 +03:00

22 lines
527 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>vue-audio-recorder | demo</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<div id="app">
<audio-recorder
upload-url="some url"
:attempts="3"
:time="2"
:start-record="callback"
:stop-record="callback"
:start-upload="callback"
:successful-upload="callback"
:failed-upload="callback"/>
</div>
</body>
</html>