swc/crates/swc_html_minifier/tests/fixture/attribute/data/input.html

19 lines
465 B
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<input
class="form-control"
type="text"
style=""
id="{{vm.formInputName}}"
name="{{vm.formInputName}}"
placeholder="YYYY-MM-DD" date-range-picker
data-ng-model="vm.value"
data-ng-model-options="{ debounce: 1000 }"
data-ng-pattern="vm.options.format"
data-options="vm.datepickerOptions">
</body>
</html>