|
- import Images from './components/Images.vue';
- export default async function initImage(){
-
- const el = document.getElementById('image-base');
- if (!el) {
- return;
- }
-
- new Vue({
- delimiters: ['${', '}'],
- el,
- data() {
- return{
-
- }
- },
- components: {
- Images
- },
- mounted(){
- },
- methods:{
- }
- });
-
- }
|