2021-12-21 00:39:20 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
|
|
|
<link rel="stylesheet" lang="sass" href="/src/sass/basic.sass" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="app">
|
2021-12-25 17:09:46 +03:00
|
|
|
<h1>{{ $t('settings.test') }}</h1>
|
|
|
|
|
|
|
|
<div class="locale-changer">
|
|
|
|
<select v-model="$i18n.locale">
|
|
|
|
<option v-for="locale in $i18n.availableLocales" :key="`locale-${locale}`" :value="locale">{{ locale }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<l-checkbox property="test"></l-checkbox>
|
2021-12-21 00:39:20 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="neutralino.js"></script>
|
|
|
|
|
|
|
|
<script type="module" src="/src/entry.js"></script>
|
2021-12-24 22:57:27 +03:00
|
|
|
<script type="module" lang="ts" src="/src/pages/settings.ts"></script>
|
2021-12-21 00:39:20 +03:00
|
|
|
</body>
|
2021-12-24 22:57:27 +03:00
|
|
|
</html>
|