style: format code for all

This commit is contained in:
LZHD
2021-07-06 01:01:42 +08:00
committed by 踏学吾痕
parent e1200f2dbe
commit 77a1a47110
114 changed files with 7068 additions and 1068 deletions

View File

@@ -1,20 +1,20 @@
<template>
<iframe
:src="url"
frameborder="0"
class="iframe"
></iframe>
<iframe :src="url" frameborder="0" class="iframe"></iframe>
</template>
<script lang='ts'>
import { ref } from 'vue';
<script lang="ts">
import { ref } from "vue";
export default {
setup() {
const url = ref(process.env.NODE_ENV === 'production' ? '/manages/html/button.html' : '/html/button.html');
const url = ref(
process.env.NODE_ENV === "production"
? "/manages/html/button.html"
: "/html/button.html"
);
return {
url
};
},
}
};
</script>