diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-19 19:36:12 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-19 19:36:12 +0900 |
| commit | 5d968afa7424d82f49502c12f63f546f86eae433 (patch) | |
| tree | 52508c7c786eb6324e4874efa98ca7ef2e91ee35 /packages/client/src/widgets/aiscript.vue | |
| parent | Update .eslintrc.js (diff) | |
| download | misskey-5d968afa7424d82f49502c12f63f546f86eae433.tar.gz misskey-5d968afa7424d82f49502c12f63f546f86eae433.tar.bz2 misskey-5d968afa7424d82f49502c12f63f546f86eae433.zip | |
update linr
Diffstat (limited to 'packages/client/src/widgets/aiscript.vue')
| -rw-r--r-- | packages/client/src/widgets/aiscript.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/client/src/widgets/aiscript.vue b/packages/client/src/widgets/aiscript.vue index f2ea5e268a..46c5094ee9 100644 --- a/packages/client/src/widgets/aiscript.vue +++ b/packages/client/src/widgets/aiscript.vue @@ -4,9 +4,9 @@ <div class="uylguesu _monospace"> <textarea v-model="props.script" placeholder="(1 + 1)"></textarea> - <button @click="run" class="_buttonPrimary">RUN</button> + <button class="_buttonPrimary" @click="run">RUN</button> <div class="logs"> - <div v-for="log in logs" class="log" :key="log.id" :class="{ print: log.print }">{{ log.text }}</div> + <div v-for="log in logs" :key="log.id" class="log" :class="{ print: log.print }">{{ log.text }}</div> </div> </div> </MkContainer> @@ -37,10 +37,10 @@ const widget = define({ }); export default defineComponent({ - extends: widget, components: { MkContainer }, + extends: widget, data() { return { |